wok view alsa-utils/receipt @ rev 13106

Up: ardour to 2.8.12.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Jun 26 18:39:56 2012 +0000 (2012-06-26)
parents d80e422e938b
children 26492d5c01dc
line source
1 # SliTaz package receipt.
3 PACKAGE="alsa-utils"
4 VERSION="1.0.25"
5 CATEGORY="multimedia"
6 SHORT_DESC="Alsa sound system utilities et config tools."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="alsa-lib ncurses util-linux-getopt"
9 BUILD_DEPENDS="alsa-lib alsa-lib-dev ncurses-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.alsa-project.org/"
12 WGET_URL="ftp://ftp.alsa-project.org/pub/utils/$TARBALL"
13 CONFIG_FILES="/var/lib/alsa/asound.state"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 --disable-xmlto \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr $fs/var/lib/alsa $fs/etc
33 touch $fs/etc/asound.state
34 cp -a $_pkg/usr/bin $fs/usr
35 cp -a $_pkg/usr/sbin $fs/usr
36 touch $fs/var/lib/alsa/asound.state
37 chmod 755 $fs/usr/sbin/*
38 # Remove speaker-test (18 Ko and needs sounds)
39 rm $fs/usr/bin/speaker-test
40 # For conf we need /var/tmp
41 mkdir -p $fs/var/tmp
42 chmod 1777 $fs/var/tmp
43 # Remove alsaconf (use soundconf).
44 rm $fs/usr/sbin/alsaconf
45 }
47 # Main alsa config (card name, volumes, etc) have moved upstream. So backup
48 # current one and reenable it after package install so user still have ther
49 # sound card and settings working.
50 pre_install()
51 {
52 if [ -f $1/etc/asound.state ]; then
53 mv $1/etc/asound.state /tmp
54 fi
55 }
57 post_install()
58 {
59 if [ -f $1/tmp/asound.state ]; then
60 mv $1/tmp/asound.state $1/var/lib/alsa
61 fi
62 }