wok view audacious/receipt @ rev 22042

gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 22 12:55:54 2019 +0300 (2019-10-22)
parents 11b5e93cb5f2
children 190336ee1571
line source
1 # SliTaz package receipt.
3 PACKAGE="audacious"
4 VERSION="3.4.3"
5 CATEGORY="multimedia"
6 SHORT_DESC="Music player like xmms"
7 MAINTAINER="mimas@slitaz.org"
8 LICENSE="GPL"
9 WEB_SITE="https://audacious-media-player.org/"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WGET_URL="http://distfiles.audacious-media-player.org/$TARBALL"
12 TAGS="music audio player mp3 ogg"
14 DEPENDS="gtk+3 libmowgli libmcs dbus-glib xorg-libXdamage libxml2 libsamplerate"
15 BUILD_DEPENDS="gtk+3-dev libmowgli-dev libmowgli libmcs libmcs-dev dbus-dev \
16 dbus-glib-dev libxml2-dev libsamplerate-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 sed -i "s/touch -t 0001010000 /touch /g" configure
23 ./configure \
24 --prefix=/usr \
25 --infodir=/usr/share/info \
26 --mandir=/usr/share/man \
27 --disable-sse2 \
28 $CONFIGURE_ARGS &&
29 make &&
30 make DESTDIR=$DESTDIR install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/share $fs/usr/lib $fs/usr/bin
37 cp -a $install/usr/bin $fs/usr
38 cp -a $install/usr/lib/*.so* $fs/usr/lib/
39 cp -a $install/usr/share/$PACKAGE $fs/usr/share
40 tar -xzf $stuff/Skins.tar.gz -C $fs/usr/share/$PACKAGE
41 find $fs/usr/share/audacious/Skins/Default -type f -exec chmod a-x \{\} \;
42 }