aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/hercules.rb
blob: b280405ad267616bbeaeef45c2d35abe0d3f87c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'formula'

class Hercules < Formula
  homepage 'http://www.hercules-390.org/'
  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