wok-next view adeskbar/receipt @ rev 21723

busybox: update patches
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:44:52 2020 +0000 (2020-09-01)
parents 7b8e000b629f
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="adeskbar"
4 VERSION="0.5.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="Application launcher for Openbox"
7 MAINTAINER="maintainer@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://launchpad.net/adeskbar"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://download.tuxfamily.org/$PACKAGE/sources/$TARBALL"
14 DEPENDS_std="gnome-menus python python-pycairo python-pygtk python-pyxdg"
15 SUGGESTED_std="python-dbus python-pyalsaaudio python-xlib"
17 HOST_ARCH="any"
19 compile_rules()
20 {
21 mkdir -p \
22 $install/usr/share/adeskbar/ \
23 $install/usr/bin/ \
24 $install/usr/share/pixmaps/ \
25 $install/usr/share/applications/
27 cp -r $src/src/* $install/usr/share/adeskbar/
28 cp $src/src/images/adeskbar.png $install/usr/share/pixmaps/
29 cp $src/adeskbar.desktop $install/usr/share/applications/
30 cp $src/adeskbar.sh $install/usr/bin/adeskbar
32 find $install -type f -name '*.py' -exec chmod 755 '{}' \;
33 find $install -type f -name '*.png' -exec chmod 644 '{}' \;
34 }