wok view esound/receipt @ rev 15135

python-werkzeug: typos
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 15 10:36:33 2013 +0000 (2013-08-15)
parents 2afb3b834baa
children 223b265f40fd
line source
1 # SliTaz package receipt.
3 PACKAGE="esound"
4 VERSION="0.2.41"
5 CATEGORY="development"
6 SHORT_DESC="Enlightened Sound Daemon"
7 MAINTAINER="allan316@gmail.com"
8 WEB_SITE="http://www.tux.org/~ricdude/EsounD.html"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WGET_URL="http://ftp.acc.umu.se/pub/GNOME/sources/esound/0.2/$TARBALL"
11 TAGS="audio sound"
13 DEPENDS="audiofile alsa-lib"
14 BUILD_DEPENDS="audiofile-dev alsa-lib-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --sysconfdir=/etc \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$install install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/bin $fs/usr
31 cp -a $install/etc $fs
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 }