homebrew-core/Formula/openfst.rb
Kyle Gorman 501c501817 openfst 1.4.1
[jn: add ENV.cxx11]

Closes Homebrew/homebrew#28866.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-05-10 11:44:43 -05:00

18 lines
482 B
Ruby

require "formula"
class Openfst < Formula
homepage 'http://www.openfst.org/'
url "http://openfst.cs.nyu.edu/twiki/pub/FST/FstDownload/openfst-1.4.1.tar.gz"
sha1 "2e5ff58c7c70e681bced49206bd81748eeb7106d"
needs :cxx11
def install
ENV.cxx11
system "./configure", "--prefix=#{prefix}",
"--disable-dependency-tracking",
"--enable-far",
"--enable-pdt"
system "make install"
end
end