wok view alsa-tools/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 61fdfde9104b
children 11b5e93cb5f2
line source
1 # SliTaz package receipt.
3 PACKAGE="alsa-tools"
4 VERSION="1.0.26.1"
5 CATEGORY="meta"
6 SHORT_DESC="Alsa sound system additionnal tools (meta package)."
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="http://alsa.cybermirror.org/tools/$TARBALL"
12 GENERIC_MENUS="no"
14 # We don't want all card mixer as dep.
15 DEPENDS="alsa-lib alsa-tools-ac3dec"
16 BUILD_DEPENDS="alsa-lib-dev gtk+-dev fltk-dev autoconf automake"
18 # List of tools we want to build, then splited into individual packages
19 TOOLS="ac3dec envy24control hwmixvolume hdsploader hdspconf hdspmixer \
20 rmedigicontrol echomixer"
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 #cd $src
26 #make configure &&
27 #make && make DESTDIR=$DESTDIR install
28 for tool in $TOOLS
29 do
30 cd $src/$tool
31 ./configure $CONFIGURE_ARGS
32 make && make DESTDIR=$DESTDIR install
33 done
35 cook_compress_manpages
36 }