automake.rb 538 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 8
  version '1.15'
  source_url 'ftp://ftp.gnu.org/gnu/automake/automake-1.15.tar.xz'
  source_sha1 'c279b35ca6c410809dac8ade143b805fb48b7655'
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