wok annotate obmenu/receipt @ rev 19859

tazweb: up to 1.12
author Christophe Lincoln <pankso@slitaz.org>
date Sat Mar 18 15:33:58 2017 +0100 (2017-03-18)
parents 16df76e1fc6a
children 970c5ec9a60a
rev   line source
paul@1568 1 # SliTaz package receipt.
paul@1568 2
paul@1568 3 PACKAGE="obmenu"
paul@1568 4 VERSION="1.0"
paul@1568 5 CATEGORY="x-window"
paul@1568 6 SHORT_DESC="Openbox menu editor."
paul@1568 7 MAINTAINER="paul@slitaz.org"
pascal@15590 8 LICENSE="GPL2"
paul@1568 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
paul@1568 10 WEB_SITE="http://obmenu.sourceforge.net/index.html"
paul@1568 11 WGET_URL="http://downloads.sourceforge.net/obmenu/$TARBALL"
jozee@4970 12 TAGS="openbox"
paul@1568 13
pascal@15590 14 DEPENDS="python pycairo pygobject pygtk libffi"
pascal@15590 15 BUILD_DEPENDS="python python-dev"
pascal@15590 16
paul@1568 17 # Rules to configure and make the package.
paul@1568 18 compile_rules()
paul@1568 19 {
paul@1568 20 python setup.py build
pascal@15590 21 python setup.py install --root=$DESTDIR
paul@1568 22 }
paul@1568 23
paul@1568 24 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@1568 25 genpkg_rules()
paul@1568 26 {
paul@1568 27 mkdir -p $fs/usr/share/pixmaps
pascal@15590 28 cp -a $install/usr $fs
pascal@15590 29 cp $install/usr/share/obmenu/mnu48.png $fs/usr/share/pixmaps
paul@1568 30 }
paul@1568 31
paul@1568 32 post_install()
paul@1568 33 {
paul@1568 34 echo -n "Enabling configuration file..."
pascal@18730 35 cp "$1/home/tux/.config/openbox/menu.xml" "$1/root/.config/openbox"
paul@1568 36 status
paul@1568 37 }
paul@1568 38
paul@1568 39 post_remove()
paul@1568 40 {
paul@1568 41 echo -n "Removing configuration files..."
pascal@18730 42 rm "$1/root/.config/openbox/menu.xml"
paul@1568 43 status
paul@1568 44 }