wok-current view alsa-plugins/receipt @ rev 7568
Up: wordpress to 3.0.3.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Thu Dec 09 03:59:40 2010 +0000 (2010-12-09) |
parents | 3d28df5bcf95 |
children | f67ac5423b9c |
line source
1 # SliTaz package receipt.
3 PACKAGE="alsa-plugins"
4 VERSION="1.0.23"
5 CATEGORY="multimedia"
6 SHORT_DESC="Alsa sound system additionnal plugins."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="alsa-lib libsamplerate"
9 BUILD_DEPENDS="pkg-config alsa-lib-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.alsa-project.org/"
12 WGET_URL="ftp://ftp.alsa-project.org/pub/plugins/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib/alsa-lib
29 cp -a $_pkg/usr/lib/alsa-lib/*.so $fs/usr/lib/alsa-lib
30 }