wok view murrine-svn-themes/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 40fab26c175d
children
line source
1 # SliTaz package receipt.
3 PACKAGE="murrine-svn-themes"
4 VERSION="0.6.2"
5 CATEGORY="customization"
6 SHORT_DESC="Some murrine themes"
7 MAINTAINER="jozee@slitaz.org"
8 LICENSE="LGPL3"
9 WEB_SITE="https://web.archive.org/web/20110726111048/http://www.cimitan.com/murrine/"
10 HOST_ARCH="any"
12 DEPENDS="gtk2-engine-murrine"
14 # Rules to gen a SliTaz package suitable for Tazpkg.
15 genpkg_rules()
16 {
17 mkdir -p $fs/usr/share/themes
18 tar -xzf stuff/murrine-themes.tar.gz -C $fs/usr/share/themes
20 # Fix warnings:
21 # .../gtkrx:*: Murrine configuration option "*" in no longer supported and
22 # will be ignored.
23 IFS=$'\n' # care about filenames with spaces
24 for gtkrc in $(find $fs/usr/share/themes -name gtkrc); do
25 sed -i 's|^[ \t]*gradients|#\0|' "$gtkrc"
26 sed -i 's|^[ \t]*scrollbar_color|#\0|' "$gtkrc"
27 done
28 }