wok view alsa-plugins/receipt @ rev 714

openbox: moved menu, autostart.sh, rc.xml and slitaz theme to slitaz-configs
author Christophe Lincoln <pankso@slitaz.org>
date Fri May 02 19:05:18 2008 +0200 (2008-05-02)
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 }