homebrew-core/Formula/hyperestraier.rb

91 lines
2.4 KiB
Ruby
Raw Normal View History

require 'formula'
class EucjpMecabIpadic < Requirement
2013-01-19 01:30:43 +00:00
fatal true
def initialize
2014-02-25 06:32:15 +00:00
@mecab_ipadic_installed = Formula['mecab-ipadic'].installed?
end
2013-01-20 02:45:59 +00:00
satisfy { @mecab_ipadic_installed && mecab_dic_charset == 'euc' }
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'
2012-09-06 04:14:49 +00:00
option 'enable-mecab', 'Include MeCab support'
depends_on 'qdbm'
2012-09-06 04:14:49 +00:00
if build.include? 'enable-mecab'
depends_on 'mecab'
depends_on 'mecab-ipadic'
2013-01-27 22:44:34 +00:00
depends_on EucjpMecabIpadic
end
def install
2012-09-06 04:14:49 +00:00
args = %W[
--disable-debug
--disable-dependency-tracking
--prefix=#{prefix}
]
2012-09-06 04:14:49 +00:00
args << '--enable-mecab' if build.include? 'enable-mecab'
system "./configure", *args
system "make mac"
system "make check-mac"
system "make install-mac"
end
2013-03-25 18:35:18 +00:00
test do
system "#{bin}/estcmd", "version"
end
end