homebrew-core/Formula/cmuclmtk.rb

15 lines
486 B
Ruby
Raw Normal View History

class Cmuclmtk < Formula
desc "Language model tools (from CMU Sphinx)"
homepage "http://cmusphinx.sourceforge.net/"
url "https://downloads.sourceforge.net/project/cmusphinx/cmuclmtk/0.7/cmuclmtk-0.7.tar.gz"
sha256 "d23e47f00224667c059d69ac942f15dc3d4c3dd40e827318a6213699b7fa2915"
depends_on "pkg-config" => :build
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
end