70dc4c6f06
Closes Homebrew/homebrew#39774. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
15 lines
450 B
Ruby
15 lines
450 B
Ruby
class StanfordParser < Formula
|
|
homepage "http://nlp.stanford.edu/software/lex-parser.shtml"
|
|
url "http://nlp.stanford.edu/software/stanford-parser-full-2015-04-20.zip"
|
|
sha256 "05bd11e500219bbbffa4bae004619560bc03f1481f9516c4bb51863e265333b8"
|
|
version "3.5.2"
|
|
|
|
def install
|
|
libexec.install Dir["*"]
|
|
bin.write_exec_script Dir["#{libexec}/*.sh"]
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/lexparser.sh", "#{libexec}/data/testsent.txt"
|
|
end
|
|
end
|