b1ff8b3906
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
27 lines
624 B
Ruby
27 lines
624 B
Ruby
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 'd5c0ea5f974d0e2776321b1aaab85647c908dd51'
|
|
version '2.0.3'
|
|
|
|
def shim_script target_script
|
|
<<-EOS.undent
|
|
#!/bin/bash
|
|
exec "#{libexec}/#{target_script}" "$@"
|
|
EOS
|
|
end
|
|
|
|
def install
|
|
libexec.install Dir['*']
|
|
Dir["#{libexec}/*.sh"].each do |f|
|
|
f = File.basename(f)
|
|
(bin+f).write shim_script(f)
|
|
end
|
|
end
|
|
|
|
def test
|
|
system "#{bin}/lexparser.sh", "#{libexec}/data/testsent.txt"
|
|
end
|
|
end
|