opt/alsa-driver/Pkgfile

23 lines
559 B
Plaintext

# Description: Advanced Linux Sound Architecture driver package
# URL: http://www.alsa-project.org/
# Maintainer: Matt Housh, jaeger at morpheus dot net
name=alsa-driver
version=1.0.11
release=1
source=(ftp://ftp.alsa-project.org/pub/driver/$name-$version.tar.bz2)
build() {
[ -z "$ALSA_CARDS" ] && ALSA_CARDS="all"
cd $name-$version
./configure --prefix=/usr \
--with-cards=$ALSA_CARDS \
--with-kernel=/lib/modules/`uname -r`/source \
--with-build=/lib/modules/`uname -r`/build
sed -i -e '/depmod/d' Makefile
make
make DESTDIR=$PKG install
}