wok view esound/receipt @ rev 11111

gtkperf: Compile with $CONFIGURE_ARGS.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Oct 17 03:58:37 2011 +0000 (2011-10-17)
parents 31c985a0bd3d
children 2afb3b834baa
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"
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 }