opt/alsa-utils/Pkgfile

26 lines
626 B
Plaintext

# Description: ALSA utils
# URL: http://www.alsa-project.org/
# Maintainer: Matt Housh, jaeger at crux dot ninja
# Depends on: gettext alsa-lib dialog
name=alsa-utils
version=1.2.13
release=2
source=(https://www.alsa-project.org/files/pub/utils/$name-$version.tar.bz2 \
rc.alsa alsa_restore_std.patch)
build() {
cd $name-$version
patch -p1 -i $SRC/alsa_restore_std.patch
./configure --prefix=/usr \
--disable-bat \
--disable-nls \
--disable-xmlto
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/man/{fr,man7}
install -D -m 0755 $SRC/rc.alsa $PKG/etc/rc.d/alsa
}