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

class Speex <Formula
  url 'http://downloads.us.xiph.org/releases/speex/speex-1.0.5.tar.gz'
  homepage 'http://speex.org'
  md5 '01d6a2de0a88a861304bf517615dea79'

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