blob: 0b4044b68731f43eabaef91dc787deb6e6fe06d5 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
 | # encoding: UTF-8
class Cabocha < Formula
  homepage "https://taku910.github.io/cabocha/"
  url "https://googledrive.com/host/0B4y35FiV1wh7cGRCUUJHVTNJRnM/cabocha-0.69.tar.bz2"
  sha1 "9196098628c5d1f0b83b371a03352b6652c04001"
  bottle do
    sha1 "c6d6a98dedfe7466c454101174b3d5cbc2752f9b" => :yosemite
    sha1 "de55a785d8dcce5696a36f69b67168c913405259" => :mavericks
    sha1 "40106c50d68d5bd03941946378679ff490ae679a" => :mountain_lion
  end
  depends_on "crf++"
  depends_on "mecab"
  # To see which dictionaries are available, run:
  #     ls `mecab-config --libs-only-L`/mecab/dic/
  depends_on "mecab-ipadic" => :recommended
  depends_on "mecab-jumandic" => :optional
  depends_on "mecab-unidic" => :optional
  option "charset=", "choose default charset: EUC-JP, CP932, UTF8"
  option "posset=", "choose default posset: IPA, JUMAN, UNIDIC"
  def install
    ENV["LIBS"] = "-liconv"
    inreplace "Makefile.in" do |s|
      s.change_make_var! "CFLAGS", ENV.cflags
      s.change_make_var! "CXXFLAGS", ENV.cflags
    end
    charset = ARGV.value("charset") || "UTF8"
    posset = ARGV.value("posset") || "IPA"
    args = %W[
      --disable-dependency-tracking
      --prefix=#{prefix}
      --with-charset=#{charset}
      --with-posset=#{posset}
    ]
    system "./configure", *args
    system "make", "install"
  end
  test do
    result = `echo "CaboCha はフリーソフトウェアです。" | cabocha | md5`.chomp
    assert_equal "a5b8293e6ebcb3246c54ecd66d6e18ee", result
  end
end
 |