wok view audacious-plugins/receipt @ rev 3653

Add: libarchive, libarchive-dev
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Mon Jul 06 23:52:56 2009 +0200 (2009-07-06)
parents c348ac291a32
children a8ca1e0896fe
line source
1 # SliTaz package receipt.
3 PACKAGE="audacious-plugins"
4 VERSION="2.0.1"
5 CATEGORY="multimedia"
6 SHORT_DESC="Plugins for audacious music player"
7 MAINTAINER="mimas@slitaz.org"
8 DEPENDS="audacious curl libxml2 libogg libvorbis alsa-lib lame flac dbus-glib taglib libsndfile libcdio libmad"
9 BUILD_DEPENDS="audacious-dev audacious neon flac-dev libogg-dev libvorbis-dev alsa-lib-dev lame-dev libmad-dev libmad"
10 TARBALL="$PACKAGE-$VERSION.tgz"
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 sed -i "s/touch -t 0001010000 /touch /g" configure
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 --disable-sse2 \
24 --enable-chardet \
25 --disable-esd --disable-pulse --disable-icecast \
26 --disable-jack --disable-timidity --disable-evdevplug \
27 --disable-rocklight --disable-lirc \
28 --disable-bluetooth --disable-paranormal \
29 --disable-projectm --disable-projectm-1.0 \
30 $CONFIGURE_ARGS &&
31 make &&
32 make DESTDIR=$PWD/_pkg install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 mkdir -p $fs/usr/share/locale
39 cp -a $_pkg/usr/lib $fs/usr
40 #cp -a $_pkg/usr/share/audacious $fs/usr/share
41 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
42 }