wok view alsa-plugins/receipt @ rev 20695

Add cddetect & nrg2iso
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Feb 05 12:16:45 2019 +0100 (2019-02-05)
parents a73d738315e8
children 68cf96abc146
line source
1 # SliTaz package receipt.
3 PACKAGE="alsa-plugins"
4 VERSION="1.1.5"
5 CATEGORY="multimedia"
6 SHORT_DESC="Alsa sound system additionnal plugins."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.alsa-project.org/"
11 WGET_URL="ftp://ftp.alsa-project.org/pub/plugins/$TARBALL"
13 DEPENDS="alsa-lib libsamplerate speex"
14 BUILD_DEPENDS="pkg-config alsa-lib-dev libsamplerate-dev speex-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 $CONFIGURE_ARGS &&
23 make &&
24 make -j1 DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib/alsa-lib
31 cp -a $install/usr/lib/alsa-lib/*.so $fs/usr/lib/alsa-lib
32 }