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
homepage 'http://www.hercules-390.org/'
2013-01-28 02:59:01 +00:00
url 'http://www.hercules-390.org/hercules-3.07.tar.gz'
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