mecab-jumandic 5.1
This commit is contained in:
parent
7c72f63b74
commit
70f1daba23
1 changed files with 25 additions and 0 deletions
25
Formula/mecab-jumandic.rb
Normal file
25
Formula/mecab-jumandic.rb
Normal file
|
@ -0,0 +1,25 @@
|
|||
require 'formula'
|
||||
|
||||
class MecabJumandic < Formula
|
||||
homepage 'http://mecab.googlecode.com/svn/trunk/mecab/doc/index.html'
|
||||
url 'https://downloads.sourceforge.net/project/mecab/mecab-jumandic/5.1-20070304/mecab-jumandic-5.1-20070304.tar.gz?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Fmecab%2Ffiles%2Fmecab-jumandic%2F5.1-20070304%2F&ts=1398353933'
|
||||
sha1 '0672cb267b8fde6268a69d57add7ab1544e62154'
|
||||
|
||||
# Via ./configure --help, valid choices are utf8 (default), euc-jp, sjis
|
||||
option 'charset=', "Select charset: utf8 (default), euc-jp, or sjis"
|
||||
|
||||
depends_on "mecab"
|
||||
|
||||
def install
|
||||
charset = ARGV.value('charset') || 'utf8'
|
||||
args = %W[
|
||||
--disable-debug
|
||||
--disable-dependency-tracking
|
||||
--prefix=#{prefix}
|
||||
--with-charset=#{charset}
|
||||
]
|
||||
|
||||
system "./configure", *args
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue