18 lines
390 B
Plaintext
18 lines
390 B
Plaintext
# Description: ALSA libraries
|
|
# URL: http://www.alsa-project.org/
|
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
|
|
|
name=alsa-lib
|
|
version=1.2.8
|
|
release=1
|
|
source=(https://www.alsa-project.org/files/pub/lib/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr \
|
|
--disable-python
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -f $PKG/usr/share/alsa/alsa.conf.d/README
|
|
}
|