Skip to content

Instantly share code, notes, and snippets.

@Tyrael
Last active August 29, 2015 14:02
Show Gist options
  • Save Tyrael/75d1ed579d59b0d34e4d to your computer and use it in GitHub Desktop.
Save Tyrael/75d1ed579d59b0d34e4d to your computer and use it in GitHub Desktop.
bison.rb
require 'formula'
class Bison < Formula
homepage 'http://www.gnu.org/software/bison/'
url 'http://ftpmirror.gnu.org/bison/bison-2.4.3.tar.gz'
mirror 'http://ftp.gnu.org/gnu/bison/bison-2.4.3.tar.gz'
sha1 'cd0b61d3957bb45a080a6246c43fc4f342b4aa26'
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"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment