aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/wopr.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/wopr.rb b/Library/Formula/wopr.rb
new file mode 100644
index 000000000..5c3cc4d72
--- /dev/null
+++ b/Library/Formula/wopr.rb
@@ -0,0 +1,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