summaryrefslogtreecommitdiff
path: root/community/portaudio_cpp
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/portaudio_cpp
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/portaudio_cpp')
-rw-r--r--community/portaudio_cpp/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/community/portaudio_cpp/PKGBUILD b/community/portaudio_cpp/PKGBUILD
new file mode 100644
index 000000000..0c666ed5c
--- /dev/null
+++ b/community/portaudio_cpp/PKGBUILD
@@ -0,0 +1,28 @@
+# Based on 'portaudio' package - Eric Belanger <belanger@astro.umontreal.ca>
+# Maintainer: Bob Finch <w9ya@qrparci.net>
+
+pkgname=portaudio_cpp
+pkgver=19_20071207
+pkgrel=2
+pkgdesc="PortAudio c++ bindings"
+url="http://www.portaudio.com/"
+source=(http://www.portaudio.com/archives/pa_stable_v$pkgver.tar.gz)
+depends=('portaudio=19_20071207' 'gcc-libs')
+license=('custom')
+arch=('i686' 'x86_64')
+options=('!libtool')
+md5sums=('d2943e4469834b25afe62cc51adc025f')
+
+build() {
+ cd $srcdir/portaudio
+ ./configure --prefix=/usr
+ make || return 1
+
+ install -D -m644 LICENSE.txt\
+ $pkgdir/usr/share/licenses/$pkgname/LICENSE.txt
+
+ cd $srcdir/portaudio/bindings/cpp
+ ./configure --prefix=/usr
+ make || return 1
+ make DESTDIR=$pkgdir install
+}