23 lines
559 B
Plaintext
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.14rc2
|
|
release=1
|
|
source=(http://gentoo.osuosl.org/distfiles/$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
|
|
}
|