wok view esound/receipt @ rev 4154

Fix: coreutils-operations dont remove cp/rm in post_install, we need them to install
author Christophe Lincoln <pankso@slitaz.org>
date Mon Sep 21 21:04:25 2009 +0200 (2009-09-21)
parents
children 31c985a0bd3d
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"
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"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --sysconfdir=/etc \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make && make DESTDIR=$PWD/_pkg 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 $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/etc $fs
33 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
34 }