aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/openfst.rb
blob: 85af38a9b417f30b8a414b226c78fead69ba2b4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
    system "make install"
  end
end