2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-10-13 01:37:13 +00:00
|
|
|
|
|
|
|
class Portaudio <Formula
|
|
|
|
url 'http://www.portaudio.com/archives/pa_stable_v19_20071207.tar.gz'
|
|
|
|
homepage 'http://www.portaudio.com'
|
|
|
|
md5 'd2943e4469834b25afe62cc51adc025f'
|
|
|
|
|
|
|
|
def install
|
2010-06-16 18:50:36 +00:00
|
|
|
fails_with_llvm
|
2009-10-13 01:37:13 +00:00
|
|
|
|
|
|
|
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
|
2010-05-01 21:17:14 +00:00
|
|
|
['-arch x86_64', '-arch ppc64', '-arch i386', '-arch ppc'].each do |arch|
|
|
|
|
inreplace "Makefile", arch, ""
|
|
|
|
end
|
2009-10-13 01:37:13 +00:00
|
|
|
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|