summaryrefslogtreecommitdiff
path: root/community/portaudio
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
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/portaudio')
-rw-r--r--community/portaudio/PKGBUILD25
1 files changed, 25 insertions, 0 deletions
diff --git a/community/portaudio/PKGBUILD b/community/portaudio/PKGBUILD
new file mode 100644
index 000000000..411f10437
--- /dev/null
+++ b/community/portaudio/PKGBUILD
@@ -0,0 +1,25 @@
+# $Id: PKGBUILD 22287 2010-07-20 20:56:06Z mherych $
+# Based on 'portaudio' package - Eric Belanger <eric@archlinux.org>
+# Last/Most-Recent Contributor: Darwin Bautista <djclue917@gmail.com>
+# Maintainer: Bob Finch <w9ya@qrparci.net>
+
+pkgname=portaudio
+pkgver=19_20071207
+pkgrel=3
+pkgdesc="A free, cross-platform, open source, audio I/O library"
+url="http://www.portaudio.com/"
+source=(http://www.portaudio.com/archives/pa_stable_v$pkgver.tar.gz)
+depends=('jack-audio-connection-kit')
+options=(!libtool)
+arch=('i686' 'x86_64')
+license=('custom')
+md5sums=('d2943e4469834b25afe62cc51adc025f')
+
+build() {
+ cd $startdir/src/$pkgname
+ ./configure --prefix=/usr
+ make || return 1
+ make DESTDIR=$pkgdir install
+
+ install -D -m644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE.txt
+}