aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorPeter Berck2011-11-18 10:43:19 +0100
committerAdam Vandenberg2011-12-21 15:01:31 -0800
commitfc03c2b2096c34ed3907b3ca11e244fb613639b4 (patch)
tree834b757767e545e5347c0ef0836a80d324817553 /Library/Formula
parentbcaffd76a8c70f7f2fababff88851720cb3f3044 (diff)
downloadhomebrew-fc03c2b2096c34ed3907b3ca11e244fb613639b4.tar.bz2
wopr 1.31.8
Wopr, word predictor. A memory based language model developed at the Tiburg University. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-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