blob: 6fa4f8a9fbb6f49aeefe7ab77a696c0b9b579c6b (
plain)
1 # Description: Portable cross-platform audio I/O library
2 # URL: http://portaudio.com
3 # Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
4 # Depends on: alsa-lib
5
6 name=portaudio
7 version=19_20140130
8 release=1
9 source=(http://www.portaudio.com/archives/pa_stable_v${version}.tgz)
10
11 build() {
12 cd $name
13 ./configure \
14 --prefix=/usr \
15 --enable-cxx \
16 --enable-static=no
17
18 #--with-host_os \
19 #--without-jack \
20 #--without-oss \
21 #--enable-shared=yes \
22 make -j 1
23 make DESTDIR=$PKG install
24 }
|