diff options
| author | Peter Berck | 2011-11-18 10:43:19 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2011-12-21 15:01:31 -0800 |
| commit | fc03c2b2096c34ed3907b3ca11e244fb613639b4 (patch) | |
| tree | 834b757767e545e5347c0ef0836a80d324817553 /Library/Formula | |
| parent | bcaffd76a8c70f7f2fababff88851720cb3f3044 (diff) | |
| download | homebrew-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.rb | 16 |
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 |
