yamcha 0.33

YamCha is a generic, customizable, and open source text chunker
oriented toward a lot of NLP tasks, such as POS tagging,
Named Entity Recognition, base NP chunking, and Text Chunking.

Closes Homebrew/homebrew#13815.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
teenst 2012-07-31 17:50:30 +09:00 committed by Adam Vandenberg
parent d83bafbdab
commit bc09b76a08
1 changed files with 16 additions and 0 deletions

16
Formula/yamcha.rb Normal file
View File

@ -0,0 +1,16 @@
require 'formula'
class Yamcha < Formula
homepage 'http://chasen.org/~taku/software/yamcha/'
url 'http://chasen.org/~taku/software/yamcha/src/yamcha-0.33.tar.gz'
sha1 '4ee6d8150557761f86fcb8af118636b7c23920c0'
depends_on "tinysvm"
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end