31deca171d
Hyper Estraier is a full-text search engine. It can be built with MeCab support to extract Japanese keywords. Its dependencies, such as qdbm, mecab, and mecab-ipadic, are already available as formulas and make its installation painless. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
104 lines
2.7 KiB
Ruby
104 lines
2.7 KiB
Ruby
require 'formula'
|
|
|
|
def mecab_support?
|
|
ARGV.include? '--enable-mecab'
|
|
end
|
|
|
|
class EucjpMecabIpadic < Requirement
|
|
def initialize
|
|
@mecab_ipadic_installed = Formula.factory('mecab-ipadic').installed?
|
|
end
|
|
|
|
def satisfied?
|
|
@mecab_ipadic_installed && mecab_dic_charset == 'euc'
|
|
end
|
|
|
|
def fatal?
|
|
true
|
|
end
|
|
|
|
def message
|
|
if @mecab_ipadic_installed
|
|
<<-EOS.undent
|
|
Hyper Estraier supports only the EUC-JP version of MeCab-IPADIC.
|
|
However, you have installed the #{mecab_dic_charset} version so far.
|
|
|
|
You have to reinstall your mecab-ipadic package manually with the
|
|
--with-charset=euc option before resuming the hyperestraier installation,
|
|
or you have to build hyperestraier without MeCab support.
|
|
|
|
To reinstall your mecab-ipadic and resume the hyperestraier installation:
|
|
|
|
$ brew uninstall mecab-ipadic
|
|
$ brew install mecab-ipadic --with-charset=euc
|
|
$ brew install hyperestraier --enable-mecab
|
|
|
|
To build hyperestraier without MeCab support:
|
|
|
|
$ brew install hyperestraier
|
|
EOS
|
|
else
|
|
<<-EOS.undent
|
|
An EUC-JP version of MeCab-IPADIC is required. You have to install your
|
|
mecab-ipadic package manually with the --with-charset=euc option before
|
|
resuming the hyperestraier installation, or you have to build hyperestraier
|
|
without MeCab support.
|
|
|
|
To install an EUC-JP version of mecab-ipadic and resume the hyperestraier
|
|
installation:
|
|
|
|
$ brew install mecab-ipadic --with-charset=euc
|
|
$ brew install hyperestraier --enable-mecab
|
|
|
|
To build hyperestraier without MeCab support:
|
|
|
|
$ brew install hyperestraier
|
|
EOS
|
|
end
|
|
end
|
|
|
|
def mecab_dic_charset
|
|
/^charset:\t(\S+)$/ =~ `mecab -D` && $1
|
|
end
|
|
end
|
|
|
|
class Hyperestraier < Formula
|
|
homepage 'http://fallabs.com/hyperestraier/index.html'
|
|
url 'http://fallabs.com/hyperestraier/hyperestraier-1.4.13.tar.gz'
|
|
sha1 '1094686f457070323083ecf4f89665c564a0c5f0'
|
|
|
|
depends_on 'qdbm'
|
|
|
|
if mecab_support?
|
|
depends_on 'mecab'
|
|
depends_on 'mecab-ipadic'
|
|
depends_on EucjpMecabIpadic.new
|
|
end
|
|
|
|
def options
|
|
[['--enable-mecab', 'Include MeCab support']]
|
|
end
|
|
|
|
def install
|
|
args = [
|
|
"--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
]
|
|
|
|
if mecab_support?
|
|
args << '--enable-mecab'
|
|
else
|
|
ohai 'hyperestraier will be built without MeCab support. To build it with MeCab support, use --enable-mecab option.'
|
|
end
|
|
|
|
system "./configure", *args
|
|
system "make mac"
|
|
system "make check-mac"
|
|
system "make install-mac"
|
|
end
|
|
|
|
def test
|
|
system "#{bin}/estcmd version"
|
|
end
|
|
end
|