diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/alsa-lib/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/alsa-lib/PKGBUILD')
-rw-r--r-- | extra/alsa-lib/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/extra/alsa-lib/PKGBUILD b/extra/alsa-lib/PKGBUILD new file mode 100644 index 000000000..b5f7fda08 --- /dev/null +++ b/extra/alsa-lib/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 110694 2011-02-21 17:46:05Z tpowa $ +# Maintainer: judd <jvinet@zeroflux.org> + +pkgname=alsa-lib +pkgver=1.0.24.1 +pkgrel=1 +pkgdesc="An alternative implementation of Linux sound support" +arch=('i686' 'x86_64') +url="http://www.alsa-project.org" +depends=('glibc') +optdepends=('python2: for python smixer plugin') +makedepends=('python2') +license=('GPL') +options=(!libtool) +source=(ftp://ftp.alsa-project.org/pub/lib/$pkgname-$pkgver.tar.bz2) + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr --with-pythonlibs="-lpthread -lm -ldl -lpython2.7" --with-pythonincludes=-I/usr/include/python2.7 + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} +md5sums=('7cc05f25e1d5b65da8fb3fdcd540f226') |