wok view audacious/receipt @ rev 3993

Upgrade: h8300-gcc (4.4.0 to 4.4.1)
author Matthew Sheets <rcx@zoominternet.net>
date Sat Aug 29 22:48:00 2009 +0000 (2009-08-29)
parents 57042f71dd7a
children a8ca1e0896fe
line source
1 # SliTaz package receipt.
3 PACKAGE="audacious"
4 VERSION="2.0.1"
5 CATEGORY="multimedia"
6 SHORT_DESC="Music player like xmms"
7 MAINTAINER="mimas@slitaz.org"
8 DEPENDS="gtk+ libmowgli libmcs dbus xorg-libXdamage libxml2 libsamplerate"
9 BUILD_DEPENDS="gtk+-dev libmowgli-dev libmowgli libmcs libmcs-dev dbus-dev libxml2-dev libsamplerate-dev"
10 TARBALL="$PACKAGE-$VERSION.tgz"
11 WEB_SITE="http://audacious-media-player.org/"
12 WGET_URL="http://distfiles.atheme.org/$TARBALL"
13 TAGS="music audio player mp3 ogg"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 sed -i "s/touch -t 0001010000 /touch /g" configure
20 ./configure \
21 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 --disable-sse2 \
25 --enable-samplerate \
26 $CONFIGURE_ARGS
27 make
28 make DESTDIR=$PWD/_pkg install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/share $fs/usr/lib
35 cp -a $_pkg/usr/bin $fs/usr
36 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib/
37 cp -a $_pkg/usr/share/audacious $fs/usr/share
38 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
39 }