wok view alsa-plugins/receipt @ rev 14996

Add LGPL2.1 licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 11:00:21 2013 +0000 (2013-08-10)
parents 611b193465d2
children a73d738315e8
line source
1 # SliTaz package receipt.
3 PACKAGE="alsa-plugins"
4 VERSION="1.0.26"
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"
12 WGET_URL="http://alsa.cybermirror.org/plugins/$TARBALL"
14 DEPENDS="alsa-lib libsamplerate speex"
15 BUILD_DEPENDS="pkg-config alsa-lib-dev libsamplerate-dev speex-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 $CONFIGURE_ARGS &&
24 make &&
25 make -j1 DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib/alsa-lib
32 cp -a $install/usr/lib/alsa-lib/*.so $fs/usr/lib/alsa-lib
33 }