wok view alsa-plugins/receipt @ rev 12833

gettext: fix bdeps (now with cross-compilation we must be even more carefull in some cases)
author Christophe Lincoln <pankso@slitaz.org>
date Tue May 22 16:51:07 2012 +0200 (2012-05-22)
parents f67ac5423b9c
children 611b193465d2
line source
1 # SliTaz package receipt.
3 PACKAGE="alsa-plugins"
4 VERSION="1.0.25"
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 -j1 DESTDIR=$DESTDIR 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 }