added openfst

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Felix Rotthowe 2010-05-18 21:20:31 +02:00 committed by Adam Vandenberg
parent 7cae66b1a6
commit 9fcd7f54b1
1 changed files with 12 additions and 0 deletions

12
Formula/openfst.rb Normal file
View File

@ -0,0 +1,12 @@
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