wok annotate openbox-theme-chrommo/receipt @ rev 19065

Take care on root in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Apr 21 09:45:48 2016 +0200 (2016-04-21)
parents f8b381f96ad6
children 887b3b11683d
rev   line source
al@18899 1 # SliTaz package receipt.
al@18899 2
al@18899 3 PACKAGE="openbox-theme-chrommo"
al@18899 4 VERSION="20150601"
al@18899 5 CATEGORY="x-window"
al@18899 6 SHORT_DESC="Chrommo - theme for Openbox 3"
al@18899 7 MAINTAINER="al.bobylev@gmail.com"
al@18899 8 LICENSE="PublicDomain"
al@18899 9 WEB_SITE="http://desktopstylish.tumblr.com/post/120497586780/chrommo-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=0B4Re2DvqOMqlcms4OHBWTVBWMmc"
al@18899 12 TAGS="hackdorte openbox"
al@18899 13
al@18899 14 DEPENDS="openbox"
al@18899 15 BUILD_DEPENDS=""
al@18899 16
al@18899 17 # Rules to configure and make the package.
al@18899 18 compile_rules()
al@18899 19 {
al@18899 20 mkdir -p $install/usr/share/themes/Chrommo
al@18899 21 cp -a $src/chrommo/* $install/usr/share/themes/Chrommo
al@18899 22 chmod a-x $install/usr/share/themes/Chrommo/openbox-3/themerc
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|>[^<]*<|>Chrommo<|' $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 }