core/alsa-lib/PKGBUILD

31 lines
735 B
Bash
Raw Normal View History

2015-01-08 07:30:12 +08:00
# Platform Packages for Chakra, part of chakraos.org
#
2015-01-08 07:30:12 +08:00
# contributor: almack
2013-11-09 23:44:59 +08:00
# maintainer: BrLi <rainman59118[at]gmail.com>
2010-03-14 23:48:48 +08:00
pkgname=alsa-lib
2015-01-08 07:30:12 +08:00
pkgver=1.0.28
pkgrel=1
2010-03-14 23:48:48 +08:00
pkgdesc="An alternative implementation of Linux sound support"
arch=('x86_64')
2010-03-14 23:48:48 +08:00
url="http://www.alsa-project.org"
depends=('glibc')
optdepends=('python2')
makedepends=('python2')
2010-03-14 23:48:48 +08:00
license=('GPL')
source=("ftp://ftp.alsa-project.org/pub/lib/$pkgname-$pkgver.tar.bz2")
2015-01-08 07:30:12 +08:00
md5sums=('c9e21b88a2b3e6e12ea7ba0f3b271fc3')
2010-03-14 23:48:48 +08:00
build() {
cd "$srcdir/$pkgname-$pkgver"
2011-10-24 07:41:25 +08:00
./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
2010-03-14 23:48:48 +08:00
}
2013-11-09 23:44:59 +08:00