wok view esound/receipt @ rev 15413

Up: thunderbird-langpack-de (17.0.9esr)
author Dominique Corbex <domcox@slitaz.org>
date Sun Nov 03 21:52:33 2013 +0100 (2013-11-03)
parents 48b4aa56e08e
children 4011b51eb28e
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 LICENSE="GPL2"
9 WEB_SITE="http://www.tux.org/~ricdude/EsounD.html"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="http://ftp.acc.umu.se/pub/GNOME/sources/esound/0.2/$TARBALL"
12 TAGS="audio sound"
14 DEPENDS="audiofile alsa-lib"
15 BUILD_DEPENDS="audiofile-dev alsa-lib-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --sysconfdir=/etc \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$install install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/etc $fs
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }