wok-next view murrine-svn-themes/receipt @ rev 21721

created recipes for efivar and efibootmgr
author Hans-G?nter Theisgen
date Tue Sep 01 10:09:15 2020 +0100 (2020-09-01)
parents a3c581bf52b8
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="devel@slitaz.org"
8 LICENSE="LGPL3"
9 WEB_SITE="https://web.archive.org/web/20110726111048/http://www.cimitan.com/murrine/"
11 genpkg_rules() {
12 mkdir -p $fs/usr/share/themes
13 tar -xzf $stuff/murrine-themes.tar.gz -C $fs/usr/share/themes
15 # Fix warnings:
16 # .../gtkrx:*: Murrine configuration option "*" in no longer supported and
17 # will be ignored.
18 IFS=$'\n' # care about filenames with spaces
19 for gtkrc in $(find $fs/usr/share/themes -name gtkrc); do
20 sed -i 's|^[ \t]*gradients|#\0|' "$gtkrc"
21 sed -i 's|^[ \t]*scrollbar_color|#\0|' "$gtkrc"
22 done
23 DEPENDS="gtk2-engine-murrine"
24 }