wok-next annotate adeskbar/receipt @ rev 21048

Small updates.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Nov 27 02:24:27 2018 +0200 (2018-11-27)
parents d5aab818505e
children 96eddcf9bd5f
rev   line source
al@20500 1 # SliTaz package receipt v2.
gokhlayeh@6350 2
gokhlayeh@6350 3 PACKAGE="adeskbar"
pascal@14791 4 VERSION="0.4.3"
gokhlayeh@6350 5 CATEGORY="system-tools"
al@14789 6 SHORT_DESC="ADesk Bar - application launcher for Openbox"
al@21020 7 MAINTAINER="devel@slitaz.org"
al@14789 8 LICENSE="GPL3"
al@14789 9 WEB_SITE="https://launchpad.net/adeskbar"
al@21048 10 HOST_ARCH="any"
al@20500 11
al@14789 12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
al@14789 13 WGET_URL="http://download.tuxfamily.org/$PACKAGE/sources/$TARBALL"
al@14789 14
al@21048 15 DEPENDS_std="python python-pygtk python-pycairo gnome-menus python-pyxdg"
al@21048 16 SUGGESTED_std="python-xlib python-dbus python-pyalsaaudio"
al@21048 17
al@20500 18 compile_rules() {
al@20500 19 mkdir -p \
al@20500 20 $install/usr/share/adeskbar/ \
al@20500 21 $install/usr/bin/ \
al@20500 22 $install/usr/share/pixmaps/ \
al@20500 23 $install/usr/share/applications/
al@20500 24 cp -r $src/src/* $install/usr/share/adeskbar/
al@20500 25 cp $src/src/images/adeskbar.png $install/usr/share/pixmaps/
al@20500 26 cp $src/adeskbar.desktop $install/usr/share/applications/
al@20500 27 cp $src/adeskbar.sh $install/usr/bin/adeskbar
gokhlayeh@6350 28
al@20500 29 find $install -type f -name '*.py' -exec chmod 755 '{}' \;
al@20500 30 find $install -type f -name '*.png' -exec chmod 644 '{}' \;
gokhlayeh@6350 31 }