blob: cfe7260e1bfdbc9ece7212f71845af0be4b27527 (
plain)
1 # Description: ALSA utils
2 # URL: http://www.alsa-project.org/
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4 # Depends on: gettext, alsa-lib, dialog
5
6 name=alsa-utils
7 version=1.1.6
8 release=1
9 source=(ftp://ftp.alsa-project.org/pub/utils/$name-$version.tar.bz2 \
10 rc.alsa)
11
12 build() {
13 cd $name-$version
14 ./configure --prefix=/usr \
15 --disable-bat \
16 --disable-nls \
17 --disable-xmlto
18
19 # alsactl_init.7 is generated using xmlto, which we don't have
20 #touch alsactl/alsactl_init.7
21
22 make
23 make DESTDIR=$PKG install
24 rm -r $PKG/usr/share/man/{fr,man7}
25
26 install -D -m 0755 $SRC/rc.alsa $PKG/etc/rc.d/alsa
27 }
|