wok view obmenu/receipt @ rev 18945

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