wok view alsa-tools/receipt @ rev 18747

marble: one desktop entry only (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Dec 26 13:11:10 2015 +0100 (2015-12-26)
parents f4c22f009037
children f0a0b5091b4a
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
34 }