wok-next annotate murrine-svn-themes/receipt @ rev 21724

busybox: update configs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 11:04:25 2020 +0000 (2020-09-01)
parents a3c581bf52b8
children
rev   line source
jozee@3026 1 # SliTaz package receipt.
jozee@3026 2
jozee@3026 3 PACKAGE="murrine-svn-themes"
jozee@3026 4 VERSION="0.6.2"
al@19126 5 CATEGORY="customization"
al@19110 6 SHORT_DESC="Some murrine themes"
al@21020 7 MAINTAINER="devel@slitaz.org"
pascal@15583 8 LICENSE="LGPL3"
al@20906 9 WEB_SITE="https://web.archive.org/web/20110726111048/http://www.cimitan.com/murrine/"
al@19110 10
al@21020 11 genpkg_rules() {
jozee@3026 12 mkdir -p $fs/usr/share/themes
al@21020 13 tar -xzf $stuff/murrine-themes.tar.gz -C $fs/usr/share/themes
al@19110 14
al@19110 15 # Fix warnings:
al@19110 16 # .../gtkrx:*: Murrine configuration option "*" in no longer supported and
al@19110 17 # will be ignored.
al@19110 18 IFS=$'\n' # care about filenames with spaces
al@19110 19 for gtkrc in $(find $fs/usr/share/themes -name gtkrc); do
al@19110 20 sed -i 's|^[ \t]*gradients|#\0|' "$gtkrc"
al@19110 21 sed -i 's|^[ \t]*scrollbar_color|#\0|' "$gtkrc"
al@19110 22 done
al@21020 23 DEPENDS="gtk2-engine-murrine"
jozee@3026 24 }