blob: 5c3cc4d7242f4567539f111c3377fd9a6eebfd4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Wopr < Formula
url 'http://ilk.uvt.nl/downloads/pub/software/wopr-1.31.8.tar.gz'
homepage 'http://ilk.uvt.nl/wopr'
md5 'cd9f79f46fc6f6c305b3fe1fed219ee1'
depends_on 'pkg-config' => :build
depends_on 'timbl'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|