wok view alsa-tools/receipt @ rev 14871

musl-libc: fix genpkg_rules
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jul 23 09:36:13 2013 +0000 (2013-07-23)
parents
children f4c22f009037
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 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.alsa-project.org/"
10 WGET_URL="http://alsa.cybermirror.org/tools/$TARBALL"
12 # We dont want all card mixer as dep.
13 DEPENDS="alsa-lib alsa-tools-ac3dec"
14 BUILD_DEPENDS="alsa-lib-dev gtk+-dev fltk-dev autoconf automake"
16 # List of tools we want to build, then splited into individual packages
17 TOOLS="ac3dec envy24control hwmixvolume hdsploader hdspconf hdspmixer \
18 rmedigicontrol echomixer"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 #cd $src
24 #make configure &&
25 #make && make DESTDIR=$DESTDIR install
26 for tool in $TOOLS
27 do
28 cd $src/$tool
29 ./configure $CONFIGURE_ARGS
30 make && make DESTDIR=$DESTDIR install
31 done
32 }