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

Deprecate "murrine" package, use "gtk2-engine-murrine" instead.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat May 07 04:49:28 2016 +0300 (2016-05-07)
parents 3167388ff7d8
children 887b3b11683d
line source
1 # SliTaz package receipt.
3 PACKAGE="murrine-svn-themes"
4 VERSION="0.6.2"
5 CATEGORY="x-window"
6 SHORT_DESC="Some murrine themes"
7 MAINTAINER="jozee@slitaz.org"
8 LICENSE="LGPL3"
9 WEB_SITE="http://www.cimitan.com/murrine"
11 DEPENDS="gtk2-engine-murrine"
13 # Rules to gen a SliTaz package suitable for Tazpkg.
14 genpkg_rules()
15 {
16 mkdir -p $fs/usr/share/themes
17 tar -xzf stuff/murrine-themes.tar.gz -C $fs/usr/share/themes
19 # Fix warnings:
20 # .../gtkrx:*: Murrine configuration option "*" in no longer supported and
21 # will be ignored.
22 IFS=$'\n' # care about filenames with spaces
23 for gtkrc in $(find $fs/usr/share/themes -name gtkrc); do
24 sed -i 's|^[ \t]*gradients|#\0|' "$gtkrc"
25 sed -i 's|^[ \t]*scrollbar_color|#\0|' "$gtkrc"
26 done
27 }