homebrew-core/Formula/autoconf213.rb
Ash Berlin a9067976ad keg-only autoconf 2.13
Spidermonkey needs version 2.13 to configure repository versions -- more recent versions of autoconf (like those that ship with OSX) dont work.

This formula based on the Macports version.
2009-12-04 18:03:08 +00:00

20 lines
555 B
Ruby

require 'formula'
class Autoconf213 <Formula
url 'http://ftp.gnu.org/pub/gnu/autoconf/autoconf-2.13.tar.gz'
md5 '9de56d4a161a723228220b0f425dc711'
homepage 'http://www.gnu.org/software/autoconf/'
def keg_only?
:provided_by_osx
end
def install
system "./configure", "--disable-debug",
"--program-suffix=213",
"--prefix=#{prefix}",
"--infodir=#{info}",
"--datadir=#{prefix}/share/autoconf213"
system "make install"
end
end