2e9bd90f75
If a non-system perl is present when automake is built and subsequently removed, automake will break. Force the use of the system perl to prevent this.
33 lines
920 B
Ruby
33 lines
920 B
Ruby
require 'formula'
|
|
|
|
class Automake < Formula
|
|
homepage 'http://www.gnu.org/software/automake/'
|
|
url 'http://ftpmirror.gnu.org/automake/automake-1.14.tar.gz'
|
|
mirror 'http://ftp.gnu.org/gnu/automake/automake-1.14.tar.gz'
|
|
sha1 '648f7a3cf8473ff6aa433c7721cab1c7fae8d06c'
|
|
|
|
# Always needs a newer autoconf, even on Snow Leopard.
|
|
depends_on 'autoconf'
|
|
|
|
if MacOS::Xcode.provides_autotools? or File.file? "/usr/bin/automake"
|
|
keg_only "Xcode (up to and including 4.2) provides (a rather old) Automake."
|
|
end
|
|
|
|
def install
|
|
ENV['PERL'] = '/usr/bin/perl'
|
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make install"
|
|
|
|
# Our aclocal must go first. See:
|
|
# https://github.com/mxcl/homebrew/issues/10618
|
|
(share/"aclocal/dirlist").write <<-EOS.undent
|
|
#{HOMEBREW_PREFIX}/share/aclocal
|
|
/usr/share/aclocal
|
|
EOS
|
|
end
|
|
|
|
def test
|
|
system "#{bin}/automake", "--version"
|
|
end
|
|
end
|