wok-6.x annotate openbox-theme-blinder/receipt @ rev 23284
updated pcsc-tools (1.5.4 -> 1.5.6)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Mar 29 10:46:18 2020 +0100 (2020-03-29) |
parents | 40fab26c175d |
children | 77ec99338524 |
rev | line source |
---|---|
al@18899 | 1 # SliTaz package receipt. |
al@18899 | 2 |
al@18899 | 3 PACKAGE="openbox-theme-blinder" |
al@18899 | 4 VERSION="20150606" |
al@19126 | 5 CATEGORY="customization" |
al@18899 | 6 SHORT_DESC="Blinder - theme for Openbox 3" |
al@18899 | 7 MAINTAINER="al.bobylev@gmail.com" |
al@18899 | 8 LICENSE="PublicDomain" |
pascal@20689 | 9 WEB_SITE="https://web.archive.org/web/20151101012710/http://desktopstylish.tumblr.com/post/120897023300/blinder-the-openbox-3-theme-download" |
al@18899 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
al@18899 | 11 WGET_URL="https://drive.google.com/uc?export=download&id=0B4Re2DvqOMqlQURSR3V5dzB4aXc" |
al@18899 | 12 TAGS="hackdorte openbox" |
al@19114 | 13 HOST_ARCH="any" |
al@18899 | 14 |
al@18899 | 15 DEPENDS="openbox" |
al@18899 | 16 BUILD_DEPENDS="" |
al@18899 | 17 |
al@18899 | 18 # Rules to configure and make the package. |
al@18899 | 19 compile_rules() |
al@18899 | 20 { |
al@18899 | 21 mkdir -p $install/usr/share/themes/Blinder |
al@18899 | 22 cp -a $src/* $install/usr/share/themes/Blinder |
al@18899 | 23 chown -R root:root $install |
al@18899 | 24 } |
al@18899 | 25 |
al@18899 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
al@18899 | 27 genpkg_rules() |
al@18899 | 28 { |
al@18899 | 29 cp -a $install/* $fs |
al@18899 | 30 } |
al@18899 | 31 |
al@18899 | 32 post_install() |
al@18899 | 33 { |
al@18899 | 34 # Set Openbox theme |
pascal@19065 | 35 for i in $1/etc/xdg/openbox/rc.xml $1/home/*/.config/openbox/rc.xml; do |
al@18899 | 36 [ -f $i ] && sed -i '/<theme>/,/<name>/ s|>[^<]*<|>Blinder<|' $i |
al@18899 | 37 done |
pascal@19065 | 38 [ -z "$1" ] && pgrep openbox >/dev/null && openbox --reconfigure |
al@18899 | 39 } |
al@18899 | 40 |
al@18899 | 41 pre_remove() |
al@18899 | 42 { |
al@18899 | 43 # Restore Openbox theme (SliTaz) |
pascal@19065 | 44 for i in $1/etc/xdg/openbox/rc.xml $1/home/*/.config/openbox/rc.xml; do |
al@18899 | 45 [ -f $i ] && sed -i '/<theme>/,/<name>/ s|>[^<]*<|>SliTaz<|' $i |
al@18899 | 46 done |
pascal@19065 | 47 [ -z "$1" ] && pgrep openbox >/dev/null && openbox --reconfigure |
al@18899 | 48 } |