aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMartijn de Boer2015-01-03 18:12:05 +0100
committerMike McQuaid2015-01-04 10:37:21 +0000
commit82fb8c91fd5d9f0d127b02f1d5b988198b8873dd (patch)
tree22dd8bf7e59f3243f0d5a11609d0fc94b4c9bc69 /Library/Formula
parent8e686150ce841fe6fe43dd7fcf19d736baea1b58 (diff)
downloadhomebrew-82fb8c91fd5d9f0d127b02f1d5b988198b8873dd.tar.bz2
julius 4.3.1 (new formula)
Adds formula for the latest version of the Julius CSR Engine
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/julius.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/Library/Formula/julius.rb b/Library/Formula/julius.rb
new file mode 100644
index 000000000..1a3a2d5c8
--- /dev/null
+++ b/Library/Formula/julius.rb
@@ -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