homebrew-core/Formula/hercules.rb

20 lines
557 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Hercules < Formula
homepage 'http://www.hercules-390.eu/'
2014-03-11 02:45:28 +00:00
url 'http://downloads.hercules-390.eu/hercules-3.10.tar.gz'
sha1 '10599041c7e5607cf2e7ecc76802f785043e2830'
skip_clean :la
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