wok-next view adeskbar/receipt @ rev 20513

A lot of tiny edits; remove wget and pkg-build from $BUILD_DEPENDS and from *-dev packages $DEPENDS.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Mar 21 15:58:17 2018 +0200 (2018-03-21)
parents a5f6371c3254
children a00b398faf9e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="adeskbar"
4 VERSION="0.4.3"
5 CATEGORY="system-tools"
6 SHORT_DESC="ADesk Bar - application launcher for Openbox"
7 MAINTAINER="gokhlayeh@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://launchpad.net/adeskbar"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://download.tuxfamily.org/$PACKAGE/sources/$TARBALL"
14 compile_rules() {
15 mkdir -p \
16 $install/usr/share/adeskbar/ \
17 $install/usr/bin/ \
18 $install/usr/share/pixmaps/ \
19 $install/usr/share/applications/
20 cp -r $src/src/* $install/usr/share/adeskbar/
21 cp $src/src/images/adeskbar.png $install/usr/share/pixmaps/
22 cp $src/adeskbar.desktop $install/usr/share/applications/
23 cp $src/adeskbar.sh $install/usr/bin/adeskbar
25 find $install -type f -name '*.py' -exec chmod 755 '{}' \;
26 find $install -type f -name '*.png' -exec chmod 644 '{}' \;
27 }
29 genpkg_rules() {
30 copy @std
31 DEPENDS="python pygtk pycairo gnome-menus python-xdg"
32 SUGGESTED="python-xlib dbus-python python-pyalsaaudio"
33 }