74c83fa9f6
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
15 lines
431 B
Ruby
15 lines
431 B
Ruby
require 'formula'
|
|
|
|
class Cmuclmtk < Formula
|
|
homepage 'http://cmusphinx.sourceforge.net/'
|
|
url 'https://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
|