43 lines
1.3 KiB
Ruby
43 lines
1.3 KiB
Ruby
require 'formula'
|
|
|
|
class Portaudio < Formula
|
|
homepage 'http://www.portaudio.com'
|
|
|
|
stable do
|
|
url 'http://www.portaudio.com/archives/pa_stable_v19_20111121.tgz'
|
|
sha1 'f07716c470603729a55b70f5af68f4a6807097eb'
|
|
|
|
# Fix PyAudio compilation on Lion
|
|
patch :p0 do
|
|
url "https://trac.macports.org/export/94150/trunk/dports/audio/portaudio/files/patch-include__pa_mac_core.h.diff"
|
|
mirror "https://raw.github.com/sakuro/macports/9ee0b7dd6045a3967348638a228bc1a658bcaa3f/audio/portaudio/files/patch-include__pa_mac_core.h.diff"
|
|
sha1 "28188dfb6a5438a050fccb70331751a40e33447d"
|
|
end if MacOS.version >= :lion
|
|
end
|
|
|
|
head 'https://subversion.assembla.com/svn/portaudio/portaudio/trunk/', :using => :svn
|
|
|
|
depends_on 'pkg-config' => :build
|
|
|
|
option :universal
|
|
|
|
fails_with :llvm do
|
|
build 2334
|
|
end
|
|
|
|
def install
|
|
ENV.universal_binary if build.universal?
|
|
|
|
args = [ "--prefix=#{prefix}",
|
|
"--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
# portaudio builds universal unless told not to
|
|
"--enable-mac-universal=#{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
|