aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cmu-sphinxbase.rb
blob: b947dd94676b300857ee569cfe346b8b9008b887 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
require 'formula'

class HomebrewedPython < Requirement
  def message; <<-EOS.undent
    Compiling against the system-provided Python will likely fail.
    The system-provided Python includes PPC support, which will cause a compiler
    mis-match. This formula is known to work against a Homebrewed Python.

    Patches to correct this issue are welcome.
    EOS
  end
  def satisfied?
    Formula.factory('python').installed?
  end
  def fatal?
    false
  end
end

class CmuSphinxbase < Formula
  homepage 'http://cmusphinx.sourceforge.net/'
  url 'http://sourceforge.net/projects/cmusphinx/files/sphinxbase/0.8/sphinxbase-0.8.tar.gz'
  sha1 'c0c4d52e143d07cd593bd6bcaeb92b9a8a5a8c8e'

  depends_on 'pkg-config' => :build
  depends_on HomebrewedPython.new

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