wok view alsa-lib/receipt @ rev 14309

Up: ethumb-dev (1.7.5)
author Dominique Corbex <domcox@slitaz.org>
date Sun Apr 07 10:20:34 2013 +0200 (2013-04-07)
parents 9400faefc6d7
children 2ceee1891179
line source
1 # SliTaz package receipt.
3 PACKAGE="alsa-lib"
4 VERSION="1.0.26"
5 CATEGORY="multimedia"
6 SHORT_DESC="Alsa sound libraries."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="linux"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.alsa-project.org/"
11 WGET_URL="http://alsa.cybermirror.org/lib/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --disable-python \
18 $CONFIGURE_ARGS &&
19 make && make -j1 install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 # Enable software mixing for multiple audio streams
26 mkdir -p $fs/etc
27 cp $stuff/asound.conf $fs/etc
28 mkdir -p $fs/usr/lib $fs/usr/share
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 cp -a $install/usr/lib/alsa-lib $fs/usr/lib
32 cp -a $install/usr/share/alsa $fs/usr/share
33 rm $fs/usr/lib/alsa-lib/smixer/*.*a
34 }