wok view alsa-plugins/receipt @ rev 1043

xpat2: patch from debian for klondike
author Bill Nagel <wcnagel@xxxxxxxx>
date Fri Jul 11 23:17:22 2008 +0000 (2008-07-11)
parents
children da22f3822867
line source
1 # SliTaz package receipt.
3 PACKAGE="alsa-plugins"
4 VERSION="1.0.16"
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 }