wok view esound/receipt @ rev 22178

corrected font-manager again
author Hans-G?nter Theisgen
date Sat Nov 09 11:39:06 2019 +0100 (2019-11-09)
parents a78610b2eb47
children 535c806240cc
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="https://web.archive.org/web/20160411164635/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/${VERSION%.*}/$TARBALL"
12 TAGS="audio sound"
13 HOST_ARCH="i486 arm"
15 DEPENDS="audiofile alsa-lib"
16 BUILD_DEPENDS="audiofile-dev alsa-lib-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --sysconfdir=/etc \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$install 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 $install/usr/bin $fs/usr
33 cp -a $install/etc $fs
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 }