homebrew-core/Formula/portaudio.rb

25 lines
659 B
Ruby
Raw Normal View History

require 'formula'
2009-10-13 01:37:13 +00:00
2011-03-10 05:11:03 +00:00
class Portaudio < Formula
2009-10-13 01:37:13 +00:00
url 'http://www.portaudio.com/archives/pa_stable_v19_20071207.tar.gz'
homepage 'http://www.portaudio.com'
md5 'd2943e4469834b25afe62cc51adc025f'
2011-03-21 21:24:22 +00:00
depends_on 'pkg-config' => :build
fails_with_llvm
2009-10-13 01:37:13 +00:00
2011-03-21 21:24:22 +00:00
def install
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
2011-03-21 21:24:22 +00:00
inreplace 'Makefile', /-arch (x64_64|ppc64|i386|ppc)/, ''
2009-10-13 01:37:13 +00:00
system "make install"
# Need 'pa_mac_core.h' to compile PyAudio
include.install "include/pa_mac_core.h"
2009-10-13 01:37:13 +00:00
end
end