blob: 37f4885eae69a214f53a87e436c73bda4aaae231 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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
inreplace "Makefile", /-arch (i386|x86_64|ppc|ppc64)/, ""
system "make install"
end
end
|