homebrew-core/Formula/openfst.rb
Brett Koonce ba74563569 openfst 1.3.2
Closes Homebrew/homebrew#13771.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-07-30 12:37:54 -07:00

13 lines
368 B
Ruby

require 'formula'
class Openfst < Formula
homepage 'http://www.openfst.org/'
url 'http://openfst.cs.nyu.edu/twiki/pub/FST/FstDownload/openfst-1.3.2.tar.gz'
sha1 'b172439a9fcd5b8d4285a04d99d90e69cd7d12e9'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end