From f79fb4974db683de5c2049aa968ebcfae7d4875d Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Sun, 5 Jun 2011 10:41:52 +0000 Subject: testing/portaudio: new aport Cross platform, open-source, audio I/O library http://www.portaudio.com/ --- testing/portaudio/APKBUILD | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 testing/portaudio/APKBUILD (limited to 'testing/portaudio') diff --git a/testing/portaudio/APKBUILD b/testing/portaudio/APKBUILD new file mode 100644 index 000000000..4ca739e98 --- /dev/null +++ b/testing/portaudio/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Natanael Copa +# Maintainer: Natanael Copa +pkgname=portaudio +pkgver=19 +pkgrel=0 +pkgdesc="Cross platform, open-source, audio I/O library" +url="http://www.portaudio.com/" +arch="all" +license="MIT" +depends= +depends_dev="alsa-lib-dev" +makedepends="$depends_dev" +install="" +subpackages="$pkgname-dev" +source="http://www.portaudio.com/archives/pa_stable_v19_20110326.tgz" + +_builddir="$srcdir"/portaudio +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./configure --prefix=/usr \ + || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make -j1 DESTDIR="$pkgdir" install || return 1 + rm -f "$pkgdir"/usr/lib/*.la +} + +md5sums="8f266ce03638419ef46e4efcb0fabde6 pa_stable_v19_20110326.tgz" -- cgit v1.2.3