aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/openfst.rb
blob: c13b8b449ad03c89144eab231e13af610b2666b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Openfst < Formula
  homepage 'http://www.openfst.org/'
  url 'http://openfst.cs.nyu.edu/twiki/pub/FST/FstDownload/openfst-1.2.10.tar.gz'
  md5 '2c73dca4cbfe3850b9b7f6988249c870'

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