homebrew-core/Formula/hercules.rb

20 lines
556 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Hercules < Formula
2010-07-25 05:34:45 +00:00
url 'http://www.hercules-390.org/hercules-3.07.tar.gz'
homepage 'http://www.hercules-390.org/'
sha1 'd0b2e543dd66ee43576e5a5faff8f4cc061cffb4'
depends_on 'gawk'
def install
# Since Homebrew optimizes for us, tell Hercules not to.
# (It gets it wrong anyway.)
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-optimization=no"
system "make"
system "make install"
end
end