2006-02-23 15:26:10 +00:00
|
|
|
# Description: ALSA utils
|
2012-06-19 16:51:31 -05:00
|
|
|
# URL: http://www.alsa-project.org/
|
2015-11-23 21:22:38 -06:00
|
|
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
2006-09-01 19:46:45 +00:00
|
|
|
# Depends on: gettext, alsa-lib, dialog
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=alsa-utils
|
2015-11-23 21:22:38 -06:00
|
|
|
version=1.1.0
|
2007-06-06 12:05:38 -05:00
|
|
|
release=1
|
2014-04-11 20:46:48 -05:00
|
|
|
source=(http://crux.nu/files/distfiles/$name-$version.tar.bz2 \
|
2013-05-26 04:18:34 -05:00
|
|
|
rc.alsa)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build() {
|
2013-05-26 04:18:34 -05:00
|
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--mandir=/usr/man \
|
2015-11-24 00:29:40 -06:00
|
|
|
--disable-bat \
|
2013-05-26 04:18:34 -05:00
|
|
|
--disable-nls \
|
|
|
|
--disable-xmlto
|
2008-10-31 18:31:11 +01:00
|
|
|
|
2013-05-26 04:18:34 -05:00
|
|
|
# alsactl_init.7 is generated using xmlto, which we don't have
|
|
|
|
#touch alsactl/alsactl_init.7
|
2008-10-31 18:31:11 +01:00
|
|
|
|
2013-05-26 04:18:34 -05:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/man/{fr,man7}
|
2008-10-31 18:31:11 +01:00
|
|
|
|
2013-05-26 04:18:34 -05:00
|
|
|
install -D -m 0755 $SRC/rc.alsa $PKG/etc/rc.d/alsa
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|