wok view audacious-plugins/receipt @ rev 22174

updated ejabberd (18.12.1 -> 19.09.1)
author Hans-G?nter Theisgen
date Fri Nov 08 15:25:15 2019 +0100 (2019-11-08)
parents ec98b2fa787f
children 190336ee1571
line source
1 # SliTaz package receipt.
3 PACKAGE="audacious-plugins"
4 VERSION="3.4.3"
5 CATEGORY="multimedia"
6 SHORT_DESC="Plugins for audacious music player"
7 MAINTAINER="mimas@slitaz.org"
8 LICENSE="MIT"
9 SUGGESTED="lame neon libmms"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="https://audacious-media-player.org/"
12 WGET_URL="http://distfiles.audacious-media-player.org/$TARBALL"
14 DEPENDS="libxml2 libogg libvorbis alsa-lib flac dbus-glib libsndfile \
15 libcdio libmad curl taglib libcomerr3 mpg123 faad2 neon gtk+"
16 BUILD_DEPENDS="audacious-dev audacious neon-dev flac-dev libogg-dev \
17 libvorbis-dev libmowgli-dev alsa-lib-dev lame-dev libmad-dev dbus-glib-dev \
18 libmcs-dev libsamplerate-dev mpg123-dev faad2-dev curl-dev \
19 libxml2-dev gtk+3-dev mesa-dev"
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 sed -i "s/touch -t 0001010000 /touch /g" configure
25 #XML_CFLAGS=-I/usr/include/libxml2
26 ./configure \
27 --prefix=/usr \
28 --infodir=/usr/share/info \
29 --mandir=/usr/share/man \
30 --disable-sse2 \
31 --enable-chardet \
32 --disable-esd --disable-pulse --disable-icecast \
33 --disable-jack --disable-timidity --disable-evdevplug \
34 --disable-rocklight --disable-lirc \
35 --disable-bluetooth --disable-paranormal \
36 --disable-projectm --disable-projectm-1.0 \
37 --disable-ffaudio --disable-mtp_up \
38 $CONFIGURE_ARGS &&
39 make &&
40 make DESTDIR=$DESTDIR install
41 }
43 # Rules to gen a SliTaz package suitable for Tazpkg.
44 genpkg_rules()
45 {
46 mkdir -p $fs/usr/share/locale
47 cp -a $install/usr/lib $fs/usr
48 cp -a $install/usr/share/locale/fr $fs/usr/share/locale
49 }