wok view alsa-tools/receipt @ rev 25068

updated alsa-tools packages (1.1.5 -> 1.2.5)
author Hans-G?nter Theisgen
date Fri Jun 10 13:52:51 2022 +0100 (23 months ago)
parents e1e1678c5265
children
line source
1 # SliTaz package receipt.
3 PACKAGE="alsa-tools"
4 VERSION="1.2.5"
5 CATEGORY="meta"
6 SHORT_DESC="Alsa sound system additional tools (meta package)."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.alsa-project.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="ftp://ftp.alsa-project.org/pub/tools/$TARBALL"
14 # We don't want all card mixer as dep.
15 DEPENDS="alsa-lib" # alsa-tools-ac3dec
16 BUILD_DEPENDS="alsa-lib-dev autoconf automake fltk-dev gcc83 gtk+-dev gtk+3-dev"
18 GENERIC_MENUS="no"
20 # List of tools we want to build, then split into individual packages
21 TOOLS="as10k1 echomixer envy24control hda-verb hdajackretask hdajacksensetest \
22 hdspconf hdsploader hdspmixer hwmixvolume mixartloader pcxhrloader \
23 rmedigicontrol sb16_csp seq sscape_ctl us428control usx2yloader \
24 vxloader" # ld10k1 qlo10k1
26 current_version()
27 {
28 wget -O - ${WEB_SITE}wiki/Download 2>/dev/null | \
29 sed '/alsa-tools-/!d;s|.*alsa-tools-||;s|.tar.*||;q'
30 }
32 # Rules to configure and make the package.
33 compile_rules()
34 {
35 for tool in $TOOLS
36 do
37 cd $src/$tool
38 ./configure \
39 CC=gcc-83 \
40 CXX=g++-83 \
41 $CONFIGURE_ARGS
42 make &&
43 make install DESTDIR=$DESTDIR
44 done
45 }