wok-current annotate lxpanel/receipt @ rev 341
lxpanel for a Freedesktop standar menu and useful applets
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Wed Mar 05 16:01:49 2008 +0100 (2008-03-05) |
parents | |
children | 6cb2e710b18d |
rev | line source |
---|---|
pankso@341 | 1 # SliTaz package receipt. |
pankso@341 | 2 |
pankso@341 | 3 PACKAGE="lxpanel" |
pankso@341 | 4 VERSION="0.2.6" |
pankso@341 | 5 CATEGORY="x-window" |
pankso@341 | 6 SHORT_DESC="Standard compliant desktop panel." |
pankso@341 | 7 MAINTAINER="pankso@slitaz.org" |
pankso@341 | 8 DEPENDS="gtk+ slitaz-menus" |
pankso@341 | 9 BUILD_DEPENDS="gtk+-dev" |
pankso@341 | 10 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@341 | 11 WEB_SITE="http://lxde.sourceforge.net/" |
pankso@341 | 12 WGET_URL="$SF_MIRROR/lxde/$TARBALL" |
pankso@341 | 13 |
pankso@341 | 14 # Rules to configure and make the package. |
pankso@341 | 15 compile_rules() |
pankso@341 | 16 { |
pankso@341 | 17 cd $src |
pankso@341 | 18 ./configure \ |
pankso@341 | 19 --prefix=/usr \ |
pankso@341 | 20 $CONFIGURE_ARGS |
pankso@341 | 21 make |
pankso@341 | 22 make DESTDIR=$PWD/_pkg install |
pankso@341 | 23 } |
pankso@341 | 24 |
pankso@341 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@341 | 26 genpkg_rules() |
pankso@341 | 27 { |
pankso@341 | 28 mkdir -p $fs/usr/share |
pankso@341 | 29 cp -a $_pkg/usr/bin $fs/usr |
pankso@341 | 30 cp -a $_pkg/usr/lib $fs/usr |
pankso@341 | 31 cp -a $_pkg/usr/share/lxpanel $fs/usr/share |
pankso@341 | 32 # Remove a few "heavy" an unseful images |
pankso@341 | 33 rm $fs/usr/share/lxpanel/images/*.svg |
pankso@341 | 34 # Default config |
pankso@341 | 35 mv $fs/usr/share/lxpanel/profile/default \ |
pankso@341 | 36 $fs/usr/share/lxpanel/profile/original |
pankso@341 | 37 cp -a stuff/default $fs/usr/share/lxpanel/profile/ |
pankso@341 | 38 } |
pankso@341 | 39 |