OpenFst 1.3.4

Closes Homebrew/homebrew#24140.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Kyle Gorman 2013-11-09 17:43:01 -08:00 committed by Adam Vandenberg
parent c73da329ef
commit 93417f4a99

View file

@ -2,12 +2,15 @@ require 'formula'
class Openfst < Formula
homepage 'http://www.openfst.org/'
url 'http://www.openfst.org/twiki/pub/FST/FstDownload/openfst-1.3.4.tar.gz'
url 'http://openfst.cs.nyu.edu/twiki/pub/FST/FstDownload/openfst-1.3.4.tar.gz'
sha1 '21972c05896b2154a3fa1bdca5c9a56350194b38'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
ENV.libstdcxx if ENV.compiler == :clang && MacOS.version >= :mavericks
system "./configure", "--prefix=#{prefix}",
"--disable-dependency-tracking",
"--enable-far",
"--enable-pdt"
system "make install"
end
end