2010-05-18 19:20:31 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Openfst < Formula
|
2010-05-18 19:20:31 +00:00
|
|
|
homepage 'http://www.openfst.org/'
|
2013-02-20 00:22:55 +00:00
|
|
|
url 'http://openfst.cs.nyu.edu/twiki/pub/FST/FstDownload/openfst-1.3.3.tar.gz'
|
|
|
|
sha1 'd265fab57dd54c65bf200dd382afb490f2551c7d'
|
2010-05-18 19:20:31 +00:00
|
|
|
|
|
|
|
def install
|
2012-02-25 05:43:00 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
2010-05-18 19:20:31 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|