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

murrine-svn-themes: remove obsolete options
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri May 06 14:33:46 2016 +0300 (2016-05-06)
parents bb009a6ef036
children bc5d5781c529
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="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 }