wok view audacious/receipt @ rev 2753

xcb-util: update BUILD_DEPENDS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Apr 26 13:50:09 2009 +0200 (2009-04-26)
parents e7476a635880
children 57042f71dd7a
line source
1 # SliTaz package receipt.
3 PACKAGE="audacious"
4 VERSION="1.5.1"
5 CATEGORY="multimedia"
6 SHORT_DESC="Music player like xmms"
7 MAINTAINER="mimas@slitaz.org"
8 DEPENDS="gtk+ libmowgli libmcs dbus xorg-libXdamage"
9 BUILD_DEPENDS="gtk+-dev libmowgli-dev libmcs-dev dbus-dev"
10 TARBALL="$PACKAGE-$VERSION.tbz2"
11 WEB_SITE="http://audacious-media-player.org/"
12 WGET_URL="http://distfiles.atheme.org/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 --disable-sse2 \
23 $CONFIGURE_ARGS
24 make
25 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/share $fs/usr/lib
32 cp -a $_pkg/usr/bin $fs/usr
33 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib/
34 cp -a $_pkg/usr/share/audacious $fs/usr/share
35 }