2013-02-02 22:58:25 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Bison < Formula
|
|
|
|
homepage 'http://www.gnu.org/software/bison/'
|
2013-12-11 19:39:42 +00:00
|
|
|
url 'http://ftpmirror.gnu.org/bison/bison-3.0.2.tar.gz'
|
|
|
|
mirror 'http://ftp.gnu.org/gnu/bison/bison-3.0.2.tar.gz'
|
|
|
|
sha1 '4bbb9a1bdc7e4328eb4e6ef2479b3fe15cc49e54'
|
2013-02-02 22:58:25 +00:00
|
|
|
|
2014-06-09 16:05:56 +00:00
|
|
|
bottle do
|
2014-10-22 01:39:08 +00:00
|
|
|
revision 1
|
|
|
|
sha1 "12fdce885665b82a723b815f40afa81f8765e1ec" => :yosemite
|
|
|
|
sha1 "59bd723116afc1a23813413e113d36c0a4361a3a" => :mavericks
|
|
|
|
sha1 "995e0372cc6b74c5475f740b83c17963fddbf320" => :mountain_lion
|
2014-06-09 16:05:56 +00:00
|
|
|
end
|
|
|
|
|
2013-02-02 22:58:25 +00:00
|
|
|
keg_only :provided_by_osx, 'Some formulae require a newer version of bison.'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
2013-07-25 21:29:08 +00:00
|
|
|
system "make", "install"
|
2013-02-02 22:58:25 +00:00
|
|
|
end
|
|
|
|
end
|