wok view alsa-plugins/receipt @ rev 25503

f3: include extra programs
author Hans-G?nter Theisgen
date Fri Jan 27 10:37:43 2023 +0100 (15 months ago)
parents 68cf96abc146
children
line source
1 # SliTaz package receipt.
3 PACKAGE="alsa-plugins"
4 VERSION="1.2.6"
5 CATEGORY="multimedia"
6 SHORT_DESC="Alsa sound system additional plugins."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="https://www.alsa-project.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="ftp://ftp.alsa-project.org/pub/plugins/$TARBALL"
14 DEPENDS="alsa-lib libsamplerate speex"
15 BUILD_DEPENDS="alsa-lib-dev libsamplerate-dev pkg-config speex-dev"
17 current_version()
18 {
19 wget -O - ${WEB_SITE}wiki/Download 2>/dev/null | \
20 sed '/alsa-plugins-/!d;s|.*alsa-plugins-||;s|.tar.*||;q'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 ./configure \
27 --prefix=/usr \
28 $CONFIGURE_ARGS &&
29 make &&
30 make install DESTDIR=$DESTDIR
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/lib/alsa-lib
37 cp -a $install/usr/lib/alsa-lib/*.so $fs/usr/lib/alsa-lib
38 }