wok view alsa-plugins/receipt @ rev 381

Dynamic lxpanel size is better for systray (for current theme)
author Christophe Lincoln <pankso@slitaz.org>
date Sat Mar 08 20:48:05 2008 +0100 (2008-03-08)
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 }