OpenFst 1.3.4
Closes Homebrew/homebrew#24140. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
c73da329ef
commit
93417f4a99
1 changed files with 6 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue