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