wok diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/alsa-tools/receipt	Tue Jul 23 09:36:13 2013 +0000
     1.3 @@ -0,0 +1,32 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="alsa-tools"
     1.7 +VERSION="1.0.26.1"
     1.8 +CATEGORY="meta"
     1.9 +SHORT_DESC="Alsa sound system additionnal tools (meta package)."
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.12 +WEB_SITE="http://www.alsa-project.org/"
    1.13 +WGET_URL="http://alsa.cybermirror.org/tools/$TARBALL"
    1.14 +
    1.15 +# We dont want all card mixer as dep.
    1.16 +DEPENDS="alsa-lib alsa-tools-ac3dec"
    1.17 +BUILD_DEPENDS="alsa-lib-dev gtk+-dev fltk-dev autoconf automake"
    1.18 +
    1.19 +# List of tools we want to build, then splited into individual packages
    1.20 +TOOLS="ac3dec envy24control hwmixvolume hdsploader hdspconf hdspmixer \
    1.21 +rmedigicontrol echomixer"
    1.22 +
    1.23 +# Rules to configure and make the package.
    1.24 +compile_rules()
    1.25 +{
    1.26 +	#cd $src
    1.27 +	#make configure &&
    1.28 +	#make && make DESTDIR=$DESTDIR install
    1.29 +	for tool in $TOOLS
    1.30 +	do
    1.31 +		cd $src/$tool
    1.32 +		./configure $CONFIGURE_ARGS
    1.33 +		make && make DESTDIR=$DESTDIR install
    1.34 +	done
    1.35 +}