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-07-30 16:09:55 +00:00
|
|
|
url 'http://openfst.cs.nyu.edu/twiki/pub/FST/FstDownload/openfst-1.3.2.tar.gz'
|
|
|
|
sha1 'b172439a9fcd5b8d4285a04d99d90e69cd7d12e9'
|
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
|