blob: 93f17855d2b48da1f1b605f7475b0f3e149a654a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class StanfordParser < Formula
homepage 'http://nlp.stanford.edu/software/lex-parser.shtml'
url 'http://nlp.stanford.edu/software/stanford-parser-2012-07-09.tgz'
sha1 '1d67ec99f473b59600e5698083ce518ada4dd1b2'
version '2.0.3'
def install
libexec.install Dir['*']
bin.write_exec_script Dir["#{libexec}/*.sh"]
end
def test
system "#{bin}/lexparser.sh", "#{libexec}/data/testsent.txt"
end
end
|