wok annotate openbox-theme-blinder/receipt @ rev 19114

Add shiki-colors, shiki-colors-murrine. Specify HOST_ARCH="any" on the packages containing themes only.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat May 07 16:09:04 2016 +0300 (2016-05-07)
parents 15e6c6910ee3
children 40fab26c175d
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@18899 5 CATEGORY="x-window"
al@18899 6 SHORT_DESC="Blinder - 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/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 }