blob: 690c6eab3cf4cedeeaec67d0b0d20b7846571e66 (
plain)
1 # Description: ALSA libraries
2 # URL: http://www.alsa-project.org/
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4
5 name=alsa-lib
6 version=1.1.0
7 release=1
8 source=(http://crux.nu/files/distfiles/$name-$version.tar.bz2)
9
10 build() {
11 cd $name-$version
12 ./configure --prefix=/usr \
13 --disable-python
14 make
15 make DESTDIR=$PKG install
16 rm -f $PKG/usr/share/alsa/alsa.conf.d/README
17 }
|