wok view cbatticon/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
children 00a42830d020
line source
1 # SliTaz package receipt.
3 PACKAGE="cbatticon"
4 VERSION="1.6.8"
5 CATEGORY="multimedia"
6 SHORT_DESC="A lightweight and fast battery icon that sits in your system tray"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://github.com/valr/cbatticon"
11 WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz"
13 DEPENDS="gtk+ glib libnotify"
14 BUILD_DEPENDS="gtk+-dev glib-dev libnotify-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 make WITH_GTK3=0 DESTDIR=$DESTDIR install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/share
26 cp -a $install/usr/bin $fs/usr
27 cp -a $install/usr/share/locale $fs/usr/share
28 }