aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/openfst.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/openfst.rb')
-rw-r--r--Library/Formula/openfst.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/Library/Formula/openfst.rb b/Library/Formula/openfst.rb
deleted file mode 100644
index 1cb83f064..000000000
--- a/Library/Formula/openfst.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-require "formula"
-
-class Openfst < Formula
- homepage 'http://www.openfst.org/'
- url "http://openfst.cs.nyu.edu/twiki/pub/FST/FstDownload/openfst-1.4.1.tar.gz"
- sha1 "2e5ff58c7c70e681bced49206bd81748eeb7106d"
-
- needs :cxx11
-
- def install
- ENV.cxx11
- system "./configure", "--prefix=#{prefix}",
- "--disable-dependency-tracking",
- "--enable-far",
- "--enable-pdt"
- system "make install"
- end
-end