7744ebc932
Closes Homebrew/homebrew#25243. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
365 B
Ruby
13 lines
365 B
Ruby
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'
|
|
sha1 '21972c05896b2154a3fa1bdca5c9a56350194b38'
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|