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

syslinux: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jun 09 17:09:08 2018 +0200 (2018-06-09)
parents 887b3b11683d
children eeba7ab1dffe
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="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 }