homebrew-core/Formula/julius.rb
Nikolaus Wittenstein e5a661b62a Clean up existing descriptions
Some descriptions were added before the mass immigration of descs,
and this commit brings them in line with the original specs of
the brew-desc project:
 - removed articles at the beginnings of descriptions
 - shortened many descriptions
 - removed formula names from descriptions
2015-06-05 14:47:37 +01:00

28 lines
896 B
Ruby

class Julius < Formula
desc "Two-pass large vocabulary continuous speech recognition engine"
homepage "http://julius.osdn.jp"
url "http://dl.osdn.jp/julius/60273/julius-4.3.1.tar.gz"
sha256 "4bf77c7b91f4bb0686c375c70bd4f2077e7de7db44f60716af9f3660f65a6253"
bottle do
cellar :any
sha1 "bba5ca072725622c54b1c599d214fd1da333490d" => :yosemite
sha1 "644114d2e731527419c6793e392684879caed612" => :mavericks
sha1 "bffe9f6902a93e1f62a103ace1906a5434c69ed7" => :mountain_lion
end
depends_on "libsndfile"
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--mandir=#{man}",
"--prefix=#{prefix}"
system "make", "install"
end
test do
shell_output("#{bin}/julius.dSYM --help", 1)
end
end