2010-05-18 19:20:31 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Openfst < Formula
|
2011-03-29 19:04:13 +00:00
|
|
|
url 'http://openfst.cs.nyu.edu/twiki/pub/FST/FstDownload/openfst-1.1.tar.gz'
|
2010-05-18 19:20:31 +00:00
|
|
|
homepage 'http://www.openfst.org/'
|
|
|
|
md5 '7491c12e0878ab594cc14ae88103c486'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|