aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/autoconf213.rb
diff options
context:
space:
mode:
authorMax Howell2010-02-23 15:40:02 +0000
committerMax Howell2010-02-23 15:40:02 +0000
commitfbf398f3611a5e1b8bd893c6fe05f8bb5e06aaa2 (patch)
tree11dc686ef136baa7853e3e8ce1001c223aefcf90 /Library/Formula/autoconf213.rb
parent50493f6b85ce2f61f9a0afffb9eb9b38e64eadf0 (diff)
downloadhomebrew-fbf398f3611a5e1b8bd893c6fe05f8bb5e06aaa2.tar.bz2
Build disposable autoconf 213 for SpiderMonkey
Seeing as it's only SpiderMonkey that requires this specific version of Autoconf, lets not keep it around needlessly when it's also just a build dependency.
Diffstat (limited to 'Library/Formula/autoconf213.rb')
-rw-r--r--Library/Formula/autoconf213.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/Library/Formula/autoconf213.rb b/Library/Formula/autoconf213.rb
deleted file mode 100644
index 865240717..000000000
--- a/Library/Formula/autoconf213.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-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
- inreplace 'configure', 'for ac_prog in mawk gawk nawk awk', 'for ac_prog in awk'
-
- system "./configure", "--disable-debug",
- "--program-suffix=213",
- "--prefix=#{prefix}",
- "--infodir=#{info}",
- "--datadir=#{prefix}/share/autoconf213"
- system "make install"
- end
-end