homebrew-core/Formula/mecab-jumandic.rb

51 lines
2.1 KiB
Ruby
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

class MecabJumandic < Formula
desc "See mecab"
homepage "https://taku910.github.io/mecab/"
url "https://www.mirrorservice.org/sites/distfiles.macports.org/mecab/mecab-jumandic-7.0-20130310.tar.gz"
mirror "https://mirrors.ustc.edu.cn/macports/distfiles/mecab/mecab-jumandic-7.0-20130310.tar.gz"
sha256 "eaf216758edee9a159bc3d02507007318686b9537943268c4565cc1f9ef07f15"
bottle do
sha256 cellar: :any_skip_relocation, arm64_big_sur: "467204e1c6b94ca425c3e18e5d1ac6d88965119dcea7403504790f592d762f1c"
sha256 cellar: :any_skip_relocation, big_sur: "6da8172f0b7ac280bce9b4cbd35f1d7c0346c16e9470df605d6527a62fb30b7c"
sha256 cellar: :any_skip_relocation, catalina: "57d02ae309f76a73adeb47ddf1a02afaf21443c4516afadb0a4cb16b0b1a2a79"
sha256 cellar: :any_skip_relocation, mojave: "c9e83fb2bd4fd8aaa18b9475b512c7fb1e39a5903aca41ce23f9cccfdbdd0f09"
sha256 cellar: :any_skip_relocation, high_sierra: "eefafd1bf8ea2aa43a50542328ee97492beab4730e52c4ec8ce6ed06844e8382"
sha256 cellar: :any_skip_relocation, sierra: "4b821839b99982c506a1e262c9fa8b650620bc546a8725a5eaa1dc54b45e4822"
sha256 cellar: :any_skip_relocation, el_capitan: "4b821839b99982c506a1e262c9fa8b650620bc546a8725a5eaa1dc54b45e4822"
sha256 cellar: :any_skip_relocation, yosemite: "4b821839b99982c506a1e262c9fa8b650620bc546a8725a5eaa1dc54b45e4822"
end
depends_on "mecab"
link_overwrite "lib/mecab/dic"
def install
args = %W[
--disable-debug
--disable-dependency-tracking
--prefix=#{prefix}
--with-charset=utf8
--with-dicdir=#{lib}/mecab/dic/jumandic
]
system "./configure", *args
system "make", "install"
end
def caveats
<<~EOS
To enable mecab-jumandic dictionary, add to #{HOMEBREW_PREFIX}/etc/mecabrc:
dicdir = #{HOMEBREW_PREFIX}/lib/mecab/dic/jumandic
EOS
end
test do
(testpath/"mecabrc").write <<~EOS
dicdir = #{HOMEBREW_PREFIX}/lib/mecab/dic/jumandic
EOS
pipe_output("mecab --rcfile=#{testpath}/mecabrc", "ã<EFBFBD>™ããããããããã<EFBFBD>®ã<EFBFBD>†ã<EFBFBD>¡\n", 0)
end
end