2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-27 04:41:34 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Hercules < Formula
|
2013-07-31 15:26:58 +00:00
|
|
|
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'
|
2009-09-27 04:41:34 +00:00
|
|
|
|
2013-12-11 07:03:30 +00:00
|
|
|
skip_clean :la
|
|
|
|
|
2009-09-27 04:41:34 +00:00
|
|
|
def install
|
|
|
|
# Since Homebrew optimizes for us, tell Hercules not to.
|
|
|
|
# (It gets it wrong anyway.)
|
2010-04-07 05:58:35 +00:00
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
2009-09-27 04:41:34 +00:00
|
|
|
"--enable-optimization=no"
|
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|