wok diff alsa-tools/receipt @ rev 25464

httpfs2-fuse: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Sep 30 09:07:42 2022 +0000 (20 months ago)
parents e1e1678c5265
children
line diff
     1.1 --- a/alsa-tools/receipt	Mon May 02 11:23:24 2022 +0000
     1.2 +++ b/alsa-tools/receipt	Fri Sep 30 09:07:42 2022 +0000
     1.3 @@ -1,25 +1,27 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="alsa-tools"
     1.7 -VERSION="1.1.5"
     1.8 +VERSION="1.2.5"
     1.9  CATEGORY="meta"
    1.10 -SHORT_DESC="Alsa sound system additionnal tools (meta package)."
    1.11 +SHORT_DESC="Alsa sound system additional tools (meta package)."
    1.12  MAINTAINER="pankso@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14  WEB_SITE="https://www.alsa-project.org/"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.17 -WGET_URL="https://www.alsa-project.org/files/pub/tools/$TARBALL"
    1.18 -GENERIC_MENUS="no"
    1.19 +WGET_URL="ftp://ftp.alsa-project.org/pub/tools/$TARBALL"
    1.20  
    1.21  # We don't want all card mixer as dep.
    1.22  DEPENDS="alsa-lib" # alsa-tools-ac3dec
    1.23 -BUILD_DEPENDS="alsa-lib-dev gtk+-dev fltk-dev autoconf automake"
    1.24 +BUILD_DEPENDS="alsa-lib-dev autoconf automake fltk-dev gcc83 gtk+-dev gtk+3-dev"
    1.25  
    1.26 -# List of tools we want to build, then splited into individual packages
    1.27 -TOOLS="as10k1 envy24control hdsploader hdspconf hdspmixer \
    1.28 -mixartloader pcxhrloader rmedigicontrol sb16_csp seq sscape_ctl \
    1.29 -us428control usx2yloader vxloader echomixer qlo10k1 \
    1.30 -hwmixvolume hdajackretask hda-verb hdajacksensetest"	# ld10k1
    1.31 +GENERIC_MENUS="no"
    1.32 +
    1.33 +# List of tools we want to build, then split into individual packages
    1.34 +TOOLS="as10k1 echomixer envy24control hda-verb hdajackretask hdajacksensetest \
    1.35 +	hdspconf hdsploader hdspmixer hwmixvolume mixartloader pcxhrloader \
    1.36 +	rmedigicontrol sb16_csp seq sscape_ctl us428control usx2yloader \
    1.37 +	vxloader"	# ld10k1 qlo10k1 
    1.38  
    1.39  current_version()
    1.40  {
    1.41 @@ -30,9 +32,14 @@
    1.42  # Rules to configure and make the package.
    1.43  compile_rules()
    1.44  {
    1.45 -	for tool in $TOOLS; do
    1.46 +	for tool in $TOOLS
    1.47 +	  do
    1.48  		cd $src/$tool
    1.49 -		./configure $CONFIGURE_ARGS
    1.50 -		make && make DESTDIR=$DESTDIR install
    1.51 -	done
    1.52 +		./configure			\
    1.53 +			CC=gcc-83		\
    1.54 +			CXX=g++-83		\
    1.55 +			$CONFIGURE_ARGS
    1.56 +		make &&
    1.57 +		make install DESTDIR=$DESTDIR
    1.58 +	  done
    1.59  }