aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bison.rb
diff options
context:
space:
mode:
authorOleksii Taran2013-07-26 00:29:08 +0300
committerAdam Vandenberg2013-07-26 09:44:23 -0700
commitb744b43dae3d77a365dc009d80df80a14ae86f59 (patch)
treeaff1e61d71a63fc40f8eded871bc1c4c3fade44e /Library/Formula/bison.rb
parent82167fa99e09018dd362ecd301f22e5a37df0641 (diff)
downloadhomebrew-b744b43dae3d77a365dc009d80df80a14ae86f59.tar.bz2
bison 3.0
Closes #21444. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/bison.rb')
-rw-r--r--Library/Formula/bison.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Formula/bison.rb b/Library/Formula/bison.rb
index ee9359ff7..483d71e16 100644
--- a/Library/Formula/bison.rb
+++ b/Library/Formula/bison.rb
@@ -2,15 +2,15 @@ require 'formula'
class Bison < Formula
homepage 'http://www.gnu.org/software/bison/'
- url 'http://ftpmirror.gnu.org/bison/bison-2.7.1.tar.gz'
- mirror 'http://ftp.gnu.org/gnu/bison/bison-2.7.1.tar.gz'
- sha1 '676af12f51a95390d9255ada83efa8fbb271be3a'
+ url 'http://ftpmirror.gnu.org/bison/bison-3.0.tar.gz'
+ mirror 'http://ftp.gnu.org/gnu/bison/bison-3.0.tar.gz'
+ sha1 'e2da7ecd4ab65a12effe63ffa3ff5e7da34d9a72'
keg_only :provided_by_osx, 'Some formulae require a newer version of bison.'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
- system "make install"
+ system "make", "install"
end
end