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/'
|
2012-02-25 05:43:00 +00:00
|
|
|
url 'http://openfst.cs.nyu.edu/twiki/pub/FST/FstDownload/openfst-1.2.10.tar.gz'
|
|
|
|
md5 '2c73dca4cbfe3850b9b7f6988249c870'
|
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
|