wok view alsa-tools/receipt @ rev 17481

Fix wanted versions
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Dec 30 08:49:34 2014 +0100 (2014-12-30)
parents 3ecfe5659741
children 61fdfde9104b
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"
13 # We dont want all card mixer as dep.
14 DEPENDS="alsa-lib alsa-tools-ac3dec"
15 BUILD_DEPENDS="alsa-lib-dev gtk+-dev fltk-dev autoconf automake"
17 # List of tools we want to build, then splited into individual packages
18 TOOLS="ac3dec envy24control hwmixvolume hdsploader hdspconf hdspmixer \
19 rmedigicontrol echomixer"
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 #cd $src
25 #make configure &&
26 #make && make DESTDIR=$DESTDIR install
27 for tool in $TOOLS
28 do
29 cd $src/$tool
30 ./configure $CONFIGURE_ARGS
31 make && make DESTDIR=$DESTDIR install
32 done
33 }