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

Add more art from Leonardo Laporte.
SLiM themes Clean, Esperanza, Japan Art, Leaves, Montanhoso.
Openbox 3 themes Blinder, Chrommo.
Combo-theme Japanes (Openbox and GTK2).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Feb 18 16:54:27 2016 +0200 (2016-02-18)
parents
children 15e6c6910ee3
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
al@18899 35 for i in /etc/xdg/openbox/rc.xml /home/*/.config/openbox/rc.xml; do
al@18899 36 [ -f $i ] && sed -i '/<theme>/,/<name>/ s|>[^<]*<|>Chrommo<|' $i
al@18899 37 done
al@18899 38 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)
al@18899 44 for i in /etc/xdg/openbox/rc.xml /home/*/.config/openbox/rc.xml; do
al@18899 45 [ -f $i ] && sed -i '/<theme>/,/<name>/ s|>[^<]*<|>SliTaz<|' $i
al@18899 46 done
al@18899 47 pgrep openbox >/dev/null && openbox --reconfigure
al@18899 48 }