wok view esound/receipt @ rev 12681

Up linux-nbd, linux-aoe (3.2.14)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue May 01 18:24:36 2012 +0200 (2012-05-01)
parents 6e90579538d6
children 48b4aa56e08e
line source
1 # SliTaz package receipt.
3 PACKAGE="esound"
4 VERSION="0.2.41"
5 CATEGORY="development"
6 SHORT_DESC="nlightened Sound Daemon"
7 MAINTAINER="allan316@gmail.com"
8 DEPENDS="audiofile alsa-lib"
9 BUILD_DEPENDS="audiofile-dev alsa-lib-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.tux.org/~ricdude/EsounD.html"
12 WGET_URL="http://ftp.acc.umu.se/pub/GNOME/sources/esound/0.2/$TARBALL"
13 TAGS="audio sound"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --sysconfdir=/etc \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make && make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $_pkg/usr/bin $fs/usr
33 cp -a $_pkg/etc $fs
34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
35 }