blob: 4fd5d05e9a180b9d4e85491378fa2e67151e0f46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
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
|