wok view audacious-plugins/receipt @ rev 24332

updated audacious packages (3.10.1 -> 4.1)
author Hans-G?nter Theisgen
date Thu Jan 27 17:51:18 2022 +0100 (2022-01-27)
parents 190336ee1571
children 21f65cda07b9
line source
1 # SliTaz package receipt.
3 PACKAGE="audacious-plugins"
4 VERSION="4.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 libmms neon"
15 DEPENDS="alsa-lib curl dbus-glib faad2 flac gcc83-lib-base gtk+ libav
16 libcdio libcomerr3 libmad libogg libsndfile libvorbis libxml2
17 mpg123 neon taglib wavpack"
18 BUILD_DEPENDS="alsa-lib-dev audacious-dev audacious curl-dev dbus-glib-dev
19 faad2-dev flac-dev gcc83 gtk+-dev lame-dev libav-dev libmad-dev
20 libmcs-dev libmowgli-dev libogg-dev libsamplerate-dev
21 libvorbis-dev libxml2-dev mesa-dev mpg123-dev neon-dev wavpack-dev"
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 # sed -i "s/touch -t 0001010000 /touch /g" configure
27 #XML_CFLAGS=-I/usr/include/libxml2
29 # 4.1 --disable-qt because else Qt5 is required
31 ./configure \
32 CC=gcc-83 \
33 CXX=g++-83 \
34 --prefix=/usr \
35 --infodir=/usr/share/info \
36 --mandir=/usr/share/man \
37 --disable-bluetooth \
38 --disable-esd \
39 --disable-evdevplug \
40 --disable-ffaudio \
41 --with-ffmpeg=none \
42 --disable-icecast \
43 --disable-jack \
44 --disable-lirc \
45 --disable-mtp_up \
46 --disable-paranormal \
47 --disable-projectm \
48 --disable-projectm-1.0 \
49 --disable-pulse \
50 --disable-qt \
51 --disable-rocklight \
52 --disable-sse2 \
53 --disable-timidity \
54 --enable-chardet \
55 $CONFIGURE_ARGS &&
56 make &&
57 make install DESTDIR=$DESTDIR
58 }
60 # Rules to gen a SliTaz package suitable for Tazpkg.
61 genpkg_rules()
62 {
63 cook_copy_folders lib
65 # 4.1 moved to package audacious-lang
66 # Set list of wanted locales in LOCALE_PACK
67 # . $WOK/slitaz-i18n/stuff/locale-pack.conf
69 # Copy message files in wanted languages, if available
70 # for locale in $LOCALE_PACK
71 # do
72 # [ -d $install/usr/share/locale/$locale ] || continue
73 # mkdir -p $fs/usr/share/locale
74 # cp -a $install/usr/share/locale/$locale $fs/usr/share/locale
75 # done
76 }