homebrew-core/Formula/portaudio.rb
Max Howell 61b2307139 s/require 'brewkit'/require 'formula'/g
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.
2009-10-15 16:48:03 +01:00

21 lines
589 B
Ruby

require 'formula'
class Portaudio <Formula
url 'http://www.portaudio.com/archives/pa_stable_v19_20071207.tar.gz'
homepage 'http://www.portaudio.com'
md5 'd2943e4469834b25afe62cc51adc025f'
def install
ENV.gcc_4_2
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
# remove arch flags else we get errors like:
# lipo: can't figure out the architecture type
['-arch x86_64', '-arch ppc64', '-arch i386', '-arch ppc'].each do |arch|
inreplace "Makefile", arch, ""
end
system "make install"
end
end