aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/openfst.rb
blob: 1cb83f06435661a53b798abf005ec78bd21fa5d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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