automake.rb 564 Bytes
Newer Older
1 2 3
require 'package'

class Automake < Package
4 5
  description 'Automake is a tool for automatically generating Makefile.in files compliant with the GNU Coding Standards.'
  homepage 'http://www.gnu.org/software/automake/'
Casey Strouse's avatar
Casey Strouse committed
6 7
  version '1.15'
  source_url 'ftp://ftp.gnu.org/gnu/automake/automake-1.15.tar.xz'
8
  source_sha256 '9908c75aabd49d13661d6dcb1bc382252d22cc77bf733a2d55e87f2aa2db8636'
9 10 11 12 13 14 15 16 17 18 19 20

  depends_on 'autoconf'

  def self.build
    system "./configure"
    system "make"
  end

  def self.install
    system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
  end
end