wok view lxpanel-extra/receipt @ rev 23907

Up btrfs-progs (5.7)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Aug 03 16:02:48 2020 +0000 (2020-08-03)
parents 09886e684df3
children 8fb436a61a63
line source
1 # SliTaz package receipt.
3 PACKAGE="lxpanel-extra"
4 VERSION="0.10.0"
5 CATEGORY="x-window"
6 SHORT_DESC="LXDE panel (extra files and plugins)"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://wiki.lxde.org/en/LXPanel"
10 TAGS="LXDE"
12 WANTED="lxpanel"
13 DEPENDS="lxpanel" #libwnck
15 # Rules to gen a SliTaz package suitable for Tazpkg.
16 genpkg_rules()
17 {
18 mkdir -p \
19 $fs/usr/lib/lxpanel/plugins \
20 $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
27 # Images
28 imgs=usr/share/lxpanel/images
29 cp -a $install/$imgs/ns-*.png $fs/$imgs
30 cp -a $install/$imgs/*lock-*.png $fs/$imgs
31 cp -a $install/$imgs/xkb-flags $fs/$imgs
32 }