27 lines
838 B
Ruby
27 lines
838 B
Ruby
class Julius < Formula
|
|
homepage "http://julius.sourceforge.jp"
|
|
url "http://sourceforge.jp/frs/redir.php?m=iij&f=%2Fjulius%2F60273%2Fjulius-4.3.1.tar.gz"
|
|
sha1 "88f64ae9ed00b6ab5a2d4fe07e3ced141a46c196"
|
|
|
|
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
|