61b2307139
brewkit.rb changes ENV destructively, so lets not do that everytime a formula is required. Now it's possible for other tools to require a formula description without worrying about side-effects.
12 lines
332 B
Ruby
12 lines
332 B
Ruby
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
|