wok-6.x annotate adeskbar/receipt @ rev 17018
busybox/fatattr: fix arm arch
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Aug 13 18:14:56 2014 +0200 (2014-08-13) |
parents | fe5bc99b93f2 |
children | 22619ed9cc54 |
rev | line source |
---|---|
gokhlayeh@6350 | 1 # SliTaz package receipt. |
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" |
gokhlayeh@7034 | 7 MAINTAINER="gokhlayeh@slitaz.org" |
al@14789 | 8 LICENSE="GPL3" |
al@14789 | 9 WEB_SITE="https://launchpad.net/adeskbar" |
al@14789 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
al@14789 | 11 WGET_URL="http://download.tuxfamily.org/$PACKAGE/sources/$TARBALL" |
al@14789 | 12 |
rocky@10897 | 13 DEPENDS="python pygtk pycairo gnome-menus python-xdg" |
al@14789 | 14 SUGGESTED="python-xlib dbus-python python-pyalsaaudio" |
gokhlayeh@6350 | 15 |
gokhlayeh@6350 | 16 # Rules to gen a SliTaz package suitable for Tazpkg. |
gokhlayeh@6350 | 17 genpkg_rules() |
gokhlayeh@6350 | 18 { |
al@14789 | 19 mkdir -p \ |
al@14789 | 20 $fs/usr/share/adeskbar \ |
al@14789 | 21 $fs/usr/bin \ |
al@14789 | 22 $fs/usr/share/pixmaps \ |
al@14789 | 23 $fs/usr/share/applications |
gokhlayeh@6350 | 24 cp -a $src/src/* $fs/usr/share/adeskbar |
gokhlayeh@6350 | 25 cp $src/src/images/adeskbar.png $fs/usr/share/pixmaps |
gokhlayeh@6350 | 26 cp $src/adeskbar.desktop $fs/usr/share/applications |
gokhlayeh@6350 | 27 cp $src/adeskbar.sh $fs/usr/bin/adeskbar |
al@14789 | 28 chown -R root:root $fs |
al@14792 | 29 find $fs -type f -name '*.png' -exec chmod 644 \{\} \; |
gokhlayeh@6350 | 30 } |
gokhlayeh@6350 | 31 |