diff options
| author | David Meikle | 2014-02-02 23:36:29 +0000 |
|---|---|---|
| committer | Adam Vandenberg | 2014-02-06 23:16:14 -0800 |
| commit | 65a901bcd0f0f19117a77ce363ae7cb0f7648861 (patch) | |
| tree | 9d651f68ca2af49cd3e07600f4a28ba3fc81f13a /Library/Formula/apache-opennlp.rb | |
| parent | cdc9d67865b28d86457531eca0879a79188bcb96 (diff) | |
| download | homebrew-65a901bcd0f0f19117a77ce363ae7cb0f7648861.tar.bz2 | |
apache-opennlp 1.5.3
Closes #26359.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/apache-opennlp.rb')
| -rw-r--r-- | Library/Formula/apache-opennlp.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/apache-opennlp.rb b/Library/Formula/apache-opennlp.rb new file mode 100644 index 000000000..6818f3f54 --- /dev/null +++ b/Library/Formula/apache-opennlp.rb @@ -0,0 +1,14 @@ +require "formula" + +class ApacheOpennlp < Formula + homepage "http://opennlp.apache.org/" + url "http://apache.mirrors.timporter.net//opennlp/opennlp-1.5.3/apache-opennlp-1.5.3-bin.tar.gz" + sha1 "e14b41a4f1f1ae7fd12713bbdd8452b367bfdc9e" + + def install + prefix.install_metafiles + libexec.install Dir['*'] + + bin.write_exec_script libexec/'bin/opennlp' + end +end |
