homebrew-core/Formula/openfst.rb
Felix Rotthowe 9fcd7f54b1 added openfst
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-05-19 10:19:15 -07:00

12 lines
350 B
Ruby

require 'formula'
class Openfst <Formula
url 'http://mohri-lt.cs.nyu.edu/twiki/pub/FST/FstDownload/openfst-1.1.tar.gz'
homepage 'http://www.openfst.org/'
md5 '7491c12e0878ab594cc14ae88103c486'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end