wok view murrine-svn-themes/receipt @ rev 22307

updated xrdp and xrdp-dev (0.9.3.1 -> 0.9.11)
author Hans-G?nter Theisgen
date Thu Nov 14 08:51:10 2019 +0100 (2019-11-14)
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 }