wok view audacious/receipt @ rev 2471

curl: --without-libidn
author Christophe Lincoln <pankso@slitaz.org>
date Sun Mar 15 19:54:47 2009 +0100 (2009-03-15)
parents a346aa4c8bef
children e75b1d632d66
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"
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 }