wok view alsa-plugins/receipt @ rev 1112

iw: fake source tree before cd
author Christophe Lincoln <pankso@slitaz.org>
date Sat Jul 19 21:06:23 2008 +0200 (2008-07-19)
parents 4f833a54f594
children 04d6abcf6d15
line source
1 # SliTaz package receipt.
3 PACKAGE="alsa-plugins"
4 VERSION="1.0.17"
5 CATEGORY="multimedia"
6 SHORT_DESC="Alsa sound system additionnal plugins."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="alsa-lib"
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 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 $CONFIGURE_ARGS
20 make
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib/alsa-lib
28 cp -a $_pkg/usr/lib/alsa-lib/*.so $fs/usr/lib/alsa-lib
29 }