wok view pybootchartgui/receipt @ rev 4774

Up: get-virtualbox (1.01) - Improve vbox installer for slitaz.
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed Jan 13 00:39:30 2010 +0100 (2010-01-13)
parents
children 7677c6ea8e85
line source
1 # SliTaz package receipt.
3 PACKAGE="pybootchartgui"
4 VERSION="r124"
5 CATEGORY="misc"
6 SHORT_DESC="bootchart GUI in python"
7 MAINTAINER="jozee@slitaz.org"
8 DEPENDS="python pygtk bootchart"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://pybootchartgui.googlecode.com/"
11 WGET_URL="$WEB_SITE/files/$TARBALL"
15 # Rules to gen a SliTaz package suitable for Tazpkg.
16 genpkg_rules()
17 {
18 PY_VERSION=`cat /var/lib/tazpkg/installed/python/receipt | grep "VERSION="|cut -d \" -f 2 | cut -d . -f 1,2`
19 mkdir -p $fs/usr/lib/python$PY_VERSION $fs/usr/bin
20 cp -a $src/pybootchartgui.py $fs/usr/lib/python$PY_VERSION
21 cp -a $src/pybootchartgui $fs/usr/lib/python$PY_VERSION
24 }
26 post_install()
27 {
28 local root
29 root=$1
30 PY_VERSION=`cat /var/lib/tazpkg/installed/python/receipt | grep "VERSION="|cut -d \" -f 2 | cut -d . -f 1,2`
31 if [ -f $root/usr/bin/pybootchartgui ] ; then rm $root/usr/bin/pybootchartgui ; fi
32 ln -s $root/usr/lib/python$PY_VERSION/pybootchartgui.py $root/usr/bin/pybootchartgui
33 }
35 post_remove()
36 {
37 local root
38 root=$1
39 rm $root/usr/bin/pybootchartgui
40 }