wok view lxpanel-extra/receipt @ rev 25043

lxpanel: update web_site
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jun 01 16:50:09 2022 +0000 (23 months ago)
parents 8fb436a61a63
children
line source
1 # SliTaz package receipt.
3 PACKAGE="lxpanel-extra"
4 VERSION="0.10.1"
5 CATEGORY="x-window"
6 TAGS="LXDE"
7 SHORT_DESC="LXDE panel (extra files and plugins)."
8 MAINTAINER="maintainer@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="https://www.lxde.org/"
12 DEPENDS="lxpanel" #libwnck
13 WANTED="lxpanel"
15 # Rules to gen a SliTaz package suitable for Tazpkg.
16 genpkg_rules()
17 {
18 mkdir -p $fs/usr/lib/lxpanel/plugins
19 mkdir -p $fs/usr/share/lxpanel/images
21 # Plugins
22 for p in kbled.so #wnckpager.so
23 do
24 cp $install/usr/lib/lxpanel/plugins/$p \
25 $fs/usr/lib/lxpanel/plugins
26 done
28 # Images
29 imgs=usr/share/lxpanel/images
30 cp -a $install/$imgs/ns-*.png $fs/$imgs
31 cp -a $install/$imgs/*lock-*.png $fs/$imgs
32 cp -a $install/$imgs/xkb-flags $fs/$imgs
33 }