wok view alsa-lib/receipt @ rev 12857

Up: tazpkg (5.0) Bunch of fixes, clean and improvment (but dont handle mulitarch)
author Christophe Lincoln <pankso@slitaz.org>
date Thu May 24 14:21:48 2012 +0200 (2012-05-24)
parents 200db0c149ba
children 1d0058b47cd1
line source
1 # SliTaz package receipt.
3 PACKAGE="alsa-lib"
4 VERSION="1.0.25"
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="ftp://ftp.alsa-project.org/pub/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 mkdir -p $fs/usr/lib $fs/usr/share
26 cp -a $_pkg/usr/bin $fs/usr
27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
28 cp -a $_pkg/usr/lib/alsa-lib $fs/usr/lib
29 cp -a $_pkg/usr/share/alsa $fs/usr/share
30 rm $fs/usr/lib/alsa-lib/smixer/*.*a
31 }