homebrew-core/Formula/stanford-parser.rb

28 lines
613 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class StanfordParser < Formula
homepage 'http://nlp.stanford.edu/software/lex-parser.shtml'
2012-02-10 06:15:51 +00:00
url 'http://nlp.stanford.edu/software/stanford-parser-2012-02-03.tgz'
md5 'ebb6c7362b02c8b17832854421d6bb49'
version '2.0'
def shim_script target_script
2012-02-10 06:15:51 +00:00
<<-EOS.undent
#!/bin/bash
exec "#{libexec}/#{target_script}" "$@"
EOS
end
def install
libexec.install Dir['*']
2012-02-10 06:15:51 +00:00
Dir["#{libexec}/*.sh"].each do |f|
f = File.basename(f)
(bin+f).write shim_script(f)
end
end
def test
2012-02-10 06:15:51 +00:00
system "#{bin}/lexparser.sh", "#{libexec}/data/testsent.txt"
end
end