wok view alsa-tools/receipt @ rev 20641

Add SSL support to retawq (needed by man to browse linux.die.net)
author Lucas Levrel <llevrel@yahoo.fr>
date Fri Jan 11 09:19:11 2019 +0100 (2019-01-11)
parents 2084616287b0
children 68cf96abc146
line source
1 # SliTaz package receipt.
3 PACKAGE="alsa-tools"
4 VERSION="1.1.5"
5 CATEGORY="meta"
6 SHORT_DESC="Alsa sound system additionnal tools (meta package)."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.alsa-project.org/"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
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="as10k1 envy24control hdsploader hdspconf hdspmixer \
20 mixartloader pcxhrloader rmedigicontrol sb16_csp seq sscape_ctl \
21 us428control usx2yloader vxloader echomixer qlo10k1 \
22 hwmixvolume hdajackretask hda-verb hdajacksensetest" # ld10k1
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 for tool in $TOOLS; do
28 cd $src/$tool
29 ./configure $CONFIGURE_ARGS
30 make && make DESTDIR=$DESTDIR install
31 done
32 }