wok view alsa-utils/receipt @ rev 19265

Compress manpages.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Jul 04 10:05:09 2016 +0300 (2016-07-04)
parents 9e01bc6321ea
children 11b5e93cb5f2
line source
1 # SliTaz package receipt.
3 PACKAGE="alsa-utils"
4 VERSION="1.0.27.2"
5 CATEGORY="multimedia"
6 SHORT_DESC="Alsa sound system utilities et config tools."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.alsa-project.org/"
11 WGET_URL="ftp://ftp.alsa-project.org/pub/utils/$TARBALL"
12 CONFIG_FILES="/var/lib/alsa/asound.state"
13 HOST_ARCH="i486 arm"
15 DEPENDS="alsa-lib ncurses util-linux-getopt"
16 BUILD_DEPENDS="alsa-lib-dev ncurses-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --disable-xmlto \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
27 cook_compress_manpages
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/share/alsa $fs/var/lib/alsa $fs/etc
34 #touch $fs/etc/asound.state
35 cp -a $install/usr/bin $fs/usr
36 cp -a $install/usr/sbin $fs/usr
37 cp -a $install/usr/share/alsa/init $fs/usr/share/alsa
39 # Declare asound.state
40 touch $fs/var/lib/alsa/asound.state
41 chmod 755 $fs/usr/sbin/*
42 # Remove speaker-test (18 Ko and needs sounds)
43 rm $fs/usr/bin/speaker-test
44 # For conf we need /var/tmp
45 mkdir -p $fs/var/tmp
46 chmod 1777 $fs/var/tmp
47 # Remove alsaconf (use soundconf).
48 rm $fs/usr/sbin/alsaconf
49 }
51 # Main alsa config (card name, volumes, etc) have moved upstream. So backup
52 # current one and reenable it after package install so user still have ther
53 # sound card and settings working.
54 pre_install()
55 {
56 if [ -f "$1/etc/asound.state" ]; then
57 mv "$1/etc/asound.state" "$1/tmp"
58 fi
59 }
61 post_install()
62 {
63 if [ -f "$1/tmp/asound.state" ]; then
64 mv "$1/tmp/asound.state" "$1/var/lib/alsa"
65 fi
66 }