diff options
| author | Ash Berlin | 2009-11-30 16:59:30 +0000 |
|---|---|---|
| committer | Ash Berlin | 2009-12-04 18:03:08 +0000 |
| commit | 0866e7db3bd06c0716591af919ae04a456cbd929 (patch) | |
| tree | 3043a939866f0474493544443e67667c168a84e9 /Library/Formula | |
| parent | eb62b316838644876cdd9375deeb87818031db68 (diff) | |
| download | homebrew-0866e7db3bd06c0716591af919ae04a456cbd929.tar.bz2 | |
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.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/autoconf213.rb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Library/Formula/autoconf213.rb b/Library/Formula/autoconf213.rb new file mode 100644 index 000000000..a4049c2a3 --- /dev/null +++ b/Library/Formula/autoconf213.rb @@ -0,0 +1,20 @@ +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 |
