wok annotate pybootchartgui/receipt @ rev 16315

ARM: add/up vala (0.24.0) + shared-mime-info (hope it will fix some gtk crash)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Apr 09 14:57:01 2014 +0200 (2014-04-09)
parents 7677c6ea8e85
children 9e01bc6321ea
rev   line source
jozee@3218 1 # SliTaz package receipt.
jozee@3218 2
jozee@3218 3 PACKAGE="pybootchartgui"
jozee@3218 4 VERSION="r124"
jozee@3218 5 CATEGORY="misc"
jozee@3218 6 SHORT_DESC="bootchart GUI in python"
jozee@3218 7 MAINTAINER="jozee@slitaz.org"
pascal@15376 8 LICENSE="GPL3"
jozee@3218 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
jozee@3218 10 WEB_SITE="http://pybootchartgui.googlecode.com/"
jozee@3218 11 WGET_URL="$WEB_SITE/files/$TARBALL"
jozee@3218 12
pascal@15376 13 DEPENDS="python pygtk bootchart"
jozee@3218 14
jozee@3218 15 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@3218 16 genpkg_rules()
jozee@3218 17 {
jozee@3218 18 PY_VERSION=`cat /var/lib/tazpkg/installed/python/receipt | grep "VERSION="|cut -d \" -f 2 | cut -d . -f 1,2`
jozee@3218 19 mkdir -p $fs/usr/lib/python$PY_VERSION $fs/usr/bin
jozee@3218 20 cp -a $src/pybootchartgui.py $fs/usr/lib/python$PY_VERSION
jozee@3218 21 cp -a $src/pybootchartgui $fs/usr/lib/python$PY_VERSION
jozee@3218 22
jozee@3218 23
jozee@3218 24 }
jozee@3218 25
jozee@3218 26 post_install()
jozee@3218 27 {
jozee@3218 28 local root
jozee@3218 29 root=$1
jozee@3218 30 PY_VERSION=`cat /var/lib/tazpkg/installed/python/receipt | grep "VERSION="|cut -d \" -f 2 | cut -d . -f 1,2`
jozee@3218 31 if [ -f $root/usr/bin/pybootchartgui ] ; then rm $root/usr/bin/pybootchartgui ; fi
jozee@3218 32 ln -s $root/usr/lib/python$PY_VERSION/pybootchartgui.py $root/usr/bin/pybootchartgui
jozee@4964 33 if [ -f $root/etc/bootchartd.conf ] ; then
jozee@4964 34 sed -i s/'AUTO_RENDER="no"'/'AUTO_RENDER="yes"'/ $root/etc/bootchartd.conf
jozee@4964 35 fi
jozee@3218 36 }
jozee@3218 37
jozee@3218 38 post_remove()
jozee@3218 39 {
jozee@3218 40 local root
jozee@3218 41 root=$1
jozee@3218 42 rm $root/usr/bin/pybootchartgui
jozee@4964 43 if [ -f $root/etc/bootchartd.conf ] ; then
jozee@4964 44 sed -i s/'AUTO_RENDER="yes"'/'AUTO_RENDER="no"'/ $root/etc/bootchartd.conf
jozee@4964 45 fi
jozee@3218 46 }