64afeec6d4
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
33 lines
826 B
Ruby
33 lines
826 B
Ruby
require 'formula'
|
|
|
|
class Portaudio < Formula
|
|
url 'http://www.portaudio.com/archives/pa_stable_v19_20111121.tgz'
|
|
homepage 'http://www.portaudio.com'
|
|
md5 '25c85c1cc5e9e657486cbc299c6c035a'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
|
|
fails_with :llvm do
|
|
build 2334
|
|
end
|
|
|
|
def options
|
|
[["--universal", "Build a universal binary."]]
|
|
end
|
|
|
|
def install
|
|
ENV.universal_binary if ARGV.build_universal?
|
|
|
|
args = [ "--prefix=#{prefix}",
|
|
"--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
# portaudio builds universal unless told not to
|
|
"--enable-mac-universal=#{ARGV.build_universal? ? 'yes' : 'no'}" ]
|
|
|
|
system "./configure", *args
|
|
system "make install"
|
|
|
|
# Need 'pa_mac_core.h' to compile PyAudio
|
|
include.install "include/pa_mac_core.h"
|
|
end
|
|
end
|