wok view audacious-plugins/receipt @ rev 12050

get-xnviewmp: remove extension from desktop file
author Samuel Trassare <samuel_trassare@yahoo.com>
date Wed Mar 07 17:28:56 2012 -0800 (2012-03-07)
parents 0d2856170146
children 7d5af230ec9b
line source
1 # SliTaz package receipt.
3 PACKAGE="audacious-plugins"
4 VERSION="3.1"
5 CATEGORY="multimedia"
6 SHORT_DESC="Plugins for audacious music player"
7 MAINTAINER="mimas@slitaz.org"
8 SUGGESTED="lame neon libmms"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://audacious-media-player.org/"
11 WGET_URL="http://distfiles.atheme.org/$TARBALL"
13 DEPENDS="libxml2 libogg libvorbis alsa-lib flac dbus-glib libsndfile \
14 libcdio libmad curl taglib libcomerr3 mpg123 faad2"
15 BUILD_DEPENDS="audacious-dev audacious neon flac-dev libogg-dev libvorbis-dev \
16 libmowgli-dev alsa-lib-dev lame-dev libmad-dev libmad dbus-glib-dev \
17 libmcs-dev libsamplerate-dev mpg123-dev faad2-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 cd $src
23 sed -i "s/touch -t 0001010000 /touch /g" configure
24 #XML_CFLAGS=-I/usr/include/libxml2
25 ./configure \
26 --prefix=/usr \
27 --infodir=/usr/share/info \
28 --mandir=/usr/share/man \
29 --disable-sse2 \
30 --enable-chardet \
31 --disable-esd --disable-pulse --disable-icecast \
32 --disable-jack --disable-timidity --disable-evdevplug \
33 --disable-rocklight --disable-lirc \
34 --disable-bluetooth --disable-paranormal \
35 --disable-projectm --disable-projectm-1.0 \
36 --disable-ffaudio --disable-mtp_up \
37 $CONFIGURE_ARGS &&
38 make &&
39 make DESTDIR=$DESTDIR install
40 }
42 # Rules to gen a SliTaz package suitable for Tazpkg.
43 genpkg_rules()
44 {
45 mkdir -p $fs/usr/share/locale
46 cp -a $install/usr/lib $fs/usr
47 cp -a $install/usr/share/locale/fr $fs/usr/share/locale
48 }