33 lines
1.2 KiB
Ruby
33 lines
1.2 KiB
Ruby
class Kytea < Formula
|
|
desc "Toolkit for analyzing text, especially Japanese and Chinese"
|
|
homepage "http://www.phontron.com/kytea/"
|
|
url "http://www.phontron.com/kytea/download/kytea-0.4.7.tar.gz"
|
|
sha256 "534a33d40c4dc5421f053c71a75695c377df737169f965573175df5d2cff9f46"
|
|
|
|
bottle do
|
|
sha256 "57c8c3acf60417d44d7df27445d667dd03095f1afdad70aeb63cf68e0cbc64c0" => :mojave
|
|
sha256 "bcdb450698d5065cf82b7726d6dc21381632c41352237dc547c05cc62e4b7e59" => :high_sierra
|
|
sha256 "d29c61f74da5f4d88f09d8b540943599ce8b6e5062af88b7d5725ea84fb4c603" => :sierra
|
|
sha256 "3e0c66a7efb34ddb8e4f80d9b95562779e224271b8d63d38f9bc8176103427e2" => :el_capitan
|
|
sha256 "2f2dda314728cd74750db339ebc2d166b8b611ad54668cc3e7b6225d39aec3f5" => :yosemite
|
|
sha256 "045d0c9ad0cf35e003b8839cb0213e3f49d9107dfbc955e449b36fd4b6596640" => :mavericks
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/neubig/kytea.git"
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
end
|
|
|
|
def install
|
|
system "autoreconf", "-i" if build.head?
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/kytea", "--version"
|
|
end
|
|
end
|