wok view gtk-clearlooks/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 9e01bc6321ea
children cb67b4f8be05
line source
1 # SliTaz package receipt.
3 PACKAGE="gtk-clearlooks"
4 VERSION="2.20.2"
5 CATEGORY="x-window"
6 SHORT_DESC="Updated default GTKengine, with ajustable colors."
7 MAINTAINER="psychomaniak@xakep.ru"
8 LICENSE="GPL2"
9 WEB_SITE="http://linuxfromscratch.org/blfs/view/svn/x/gtk-engines.html"
10 WANTED="gtk-engines"
12 DEPENDS="gtk+"
14 # Rules to gen a SliTaz package suitable for Tazpkg.
15 genpkg_rules()
16 {
17 THEME="usr/share/themes/Clearlooks/gtk-2.0"
18 ENGINE="usr/lib/gtk-2.0/2.10.0/engines"
19 XML="usr/share/gtk-engines"
21 cd $fs && mkdir -p $THEME $ENGINE $XML
22 cp -a $install/$ENGINE/libclearlooks.so $fs/$ENGINE
23 cp -a $install/$THEME/gtkrc $fs/$THEME
24 cp -a $install/$XML/clearlooks.xml $fs/$XML
26 sed -i '/lang/d' $fs/$XML/*
27 }