aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorBrenton Partridge2012-02-25 00:43:00 -0500
committerAdam Vandenberg2012-02-24 22:01:55 -0800
commit4423bf827266a0338fa468d87b5b9835fa6866e1 (patch)
tree3cf954b8419868351160bfc29c42032ae00f1a0d /Library
parentf2dd53ea1a1233d473603603860b5841c9c476d6 (diff)
downloadhomebrew-4423bf827266a0338fa468d87b5b9835fa6866e1.tar.bz2
OpenFST 1.2.10
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/openfst.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/Library/Formula/openfst.rb b/Library/Formula/openfst.rb
index 85af38a9b..c13b8b449 100644
--- a/Library/Formula/openfst.rb
+++ b/Library/Formula/openfst.rb
@@ -1,12 +1,13 @@
require 'formula'
class Openfst < Formula
- url 'http://openfst.cs.nyu.edu/twiki/pub/FST/FstDownload/openfst-1.1.tar.gz'
homepage 'http://www.openfst.org/'
- md5 '7491c12e0878ab594cc14ae88103c486'
+ url 'http://openfst.cs.nyu.edu/twiki/pub/FST/FstDownload/openfst-1.2.10.tar.gz'
+ md5 '2c73dca4cbfe3850b9b7f6988249c870'
def install
- system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
system "make install"
end
end