2014-04-30 18:37:05 +00:00
|
|
|
require "formula"
|
2010-05-18 19:20:31 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Openfst < Formula
|
2010-05-18 19:20:31 +00:00
|
|
|
homepage 'http://www.openfst.org/'
|
2014-04-30 18:37:05 +00:00
|
|
|
url "http://openfst.cs.nyu.edu/twiki/pub/FST/FstDownload/openfst-1.4.1.tar.gz"
|
|
|
|
sha1 "2e5ff58c7c70e681bced49206bd81748eeb7106d"
|
|
|
|
|
|
|
|
needs :cxx11
|
2010-05-18 19:20:31 +00:00
|
|
|
|
|
|
|
def install
|
2014-04-30 18:37:05 +00:00
|
|
|
ENV.cxx11
|
2013-11-10 01:43:01 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}",
|
|
|
|
"--disable-dependency-tracking",
|
|
|
|
"--enable-far",
|
|
|
|
"--enable-pdt"
|
2010-05-18 19:20:31 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|