wok view gtk3-engine-unico/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 d3eb5f4b53ea
children 1bd2c6414e5a
line source
1 # SliTaz package receipt.
3 PACKAGE="gtk3-engine-unico"
4 VERSION="1.0.2"
5 CATEGORY="customization"
6 SHORT_DESC="Unico GTK3 theme engine"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="LGPL2.1"
9 WEB_SITE="https://launchpad.net/unico"
10 SOURCE="unico"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WGET_URL="https://launchpad.net/unico/${VERSION%.*}/$VERSION/+download/$TARBALL"
13 TAGS="gtk3"
15 DEPENDS="gtk+3"
16 BUILD_DEPENDS="gtk+3-dev wget libxml2-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --disable-static \
23 --disable-debug \
24 $CONFIGURE_ARGS &&
25 make &&
26 make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 cp -a $install/* $fs
33 find $fs -name '*.*a' -delete
34 }