mecab-ko 0.9.0

Closes Homebrew/homebrew#26068.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
kkung 2014-01-21 17:13:00 +09:00 committed by Adam Vandenberg
parent a793e79053
commit 9575ed2b08

14
Formula/mecab-ko.rb Normal file
View file

@ -0,0 +1,14 @@
require "formula"
class MecabKo < Formula
homepage "https://bitbucket.org/bibreen/mecab-ko"
url "https://bitbucket.org/bibreen/mecab-ko/downloads/mecab-0.996-ko-0.9.0.tar.gz"
version "0.996-ko-0.9.0"
sha1 "cd70543d2b60d93398d9f26a3c912dde73c83382"
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end