cmuclmtk: 0.7 - CMU Language Modeling Toolkit

Closes Homebrew/homebrew#25269.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Ben Olive 2013-12-16 15:31:22 -05:00 committed by Adam Vandenberg
parent 116073d13d
commit 5022a78a0e

15
Formula/cmuclmtk.rb Normal file
View file

@ -0,0 +1,15 @@
require 'formula'
class Cmuclmtk < Formula
homepage 'http://cmusphinx.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/cmusphinx/cmuclmtk/0.7/cmuclmtk-0.7.tar.gz'
sha1 '118a2d10f7ac12582b08d9d9e7d970e13247b831'
depends_on 'pkg-config' => :build
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
end