Skip to content

Instantly share code, notes, and snippets.

@Tyrael
Last active August 29, 2015 14:02
Show Gist options
  • Select an option

  • Save Tyrael/925cc6387a86606b747e to your computer and use it in GitHub Desktop.

Select an option

Save Tyrael/925cc6387a86606b747e to your computer and use it in GitHub Desktop.
require 'formula'
class Flex < Formula
homepage 'http://flex.sourceforge.net'
url 'http://ftp.gnu.org/old-gnu/gnu-0.2/src/flex-2.5.4.tar.gz'
sha1 '308b912c41f68504f1256e57218bde266fc07c57'
bottle do
sha1 "ea93eb8bc57868e9e4cfe50ab39fc3c7f2ccbb58" => :mavericks
sha1 "ec164496e9eec22a920e935f57dea4bc16fa4afd" => :mountain_lion
sha1 "654c2f9978368c6f761720f7fa1a29127bf9deea" => :lion
end
keg_only :provided_by_osx, 'Some formulae require a newer version of flex.'
depends_on 'gettext'
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