julius 4.3.1 (new formula)
Adds formula for the latest version of the Julius CSR Engine
This commit is contained in:
parent
f7dc3f1b0d
commit
31f4e2c706
1 changed files with 20 additions and 0 deletions
20
Formula/julius.rb
Normal file
20
Formula/julius.rb
Normal file
|
@ -0,0 +1,20 @@
|
|||
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"
|
||||
|
||||
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
|
Loading…
Reference in a new issue