aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/regina-rexx.rb
blob: d92969f5e03a50018bc5b0c0304fffd57432b308 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class ReginaRexx < Formula
  homepage 'http://regina-rexx.sourceforge.net/'
  url 'http://downloads.sourceforge.net/project/regina-rexx/regina-rexx/3.7/Regina-REXX-3.7.tar.gz'
  sha1 '8d4b06480404d4c659e0613bc04a057b03d0b981'

  def install
    ENV.j1 # No core usage for you, otherwise race condition = missing files.
    system "./configure", "--disable-debug",
                          "--prefix=#{prefix}"
    system "make install"
  end
end