wok view audacious-plugins/receipt @ rev 23801

created recipes for xcb-util-cursor and xcb-util-cursor-dev
author Hans-G?nter Theisgen
date Sun May 24 07:21:45 2020 +0100 (2020-05-24)
parents a78610b2eb47
children 4e9e2372bd7f
line source
1 # SliTaz package receipt.
3 PACKAGE="audacious-plugins"
4 VERSION="3.10.1"
5 CATEGORY="multimedia"
6 SHORT_DESC="Plugins for audacious music player."
7 MAINTAINER="mimas@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://audacious-media-player.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://distfiles.audacious-media-player.org/$TARBALL"
14 SUGGESTED="lame neon libmms"
15 DEPENDS="alsa-lib curl dbus-glib faad2 flac gcc83-lib-base gtk+
16 libcdio libcomerr3 libmad libogg libsndfile libvorbis
17 libxml2 mpg123 neon taglib wavpack"
18 BUILD_DEPENDS="alsa-lib-dev audacious audacious-dev curl-dev
19 dbus-glib-dev faad2-dev flac-dev gcc83 gtk+-dev lame-dev
20 libmad-dev libmcs-dev libmowgli-dev libogg-dev
21 libsamplerate-dev libvorbis-dev libxml2-dev mesa-dev
22 mpg123-dev neon-dev wavpack-dev"
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 # sed -i "s/touch -t 0001010000 /touch /g" configure
28 #XML_CFLAGS=-I/usr/include/libxml2
30 ./configure \
31 CC=gcc-83 \
32 CXX=g++-83 \
33 --prefix=/usr \
34 --infodir=/usr/share/info \
35 --mandir=/usr/share/man \
36 --disable-bluetooth \
37 --disable-esd \
38 --disable-evdevplug \
39 --disable-ffaudio \
40 --disable-icecast \
41 --disable-jack \
42 --disable-lirc \
43 --disable-mtp_up \
44 --disable-paranormal \
45 --disable-projectm \
46 --disable-projectm-1.0 \
47 --disable-pulse \
48 --disable-rocklight \
49 --disable-sse2 \
50 --disable-timidity \
51 --enable-chardet \
52 --with-ffmpeg=none \
53 $CONFIGURE_ARGS &&
54 make &&
55 make DESTDIR=$DESTDIR install
56 }
58 # Rules to gen a SliTaz package suitable for Tazpkg.
59 genpkg_rules()
60 {
61 mkdir -p $fs/usr/share/locale
63 cp -a $install/usr/lib $fs/usr
65 # Set list of wanted locales in LOCALE_PACK
66 . $WOK/slitaz-i18n/stuff/locale-pack.conf
68 # Copy message files in wanted languages, if available
69 for locale in $LOCALE_PACK
70 do
71 [ -d $install/usr/share/locale/$locale ] || continue
72 cp -a $install/usr/share/locale/$locale $fs/usr/share/locale
73 done
74 }