wok view lxde/receipt @ rev 20671

Update some WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 24 11:33:03 2019 +0100 (2019-01-24)
parents 970c5ec9a60a
children ad2c8cdf2efc
line source
1 # SliTaz package receipt.
3 PACKAGE="lxde"
4 VERSION="0.3.2.1"
5 CATEGORY="meta"
6 SHORT_DESC="Meta-package for the Lightweight X11 Desktop Environement"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://lxde.org/"
10 TAGS="LXDE window-manager desktop"
11 HOST_ARCH="i486 arm"
13 SUGGESTED="lxterminal lxdm lxshortcut xarchiver"
14 DEPENDS="xorg-libX11 gtk+ lxpanel lxtask lxappearance lxsession pcmanfm \
15 lxsession-edit lxrandr lxinput openbox obconf gpicview leafpad slitaz-configs \
16 slitaz-tools-boxes"
18 # Rules to gen a SliTaz package suitable for Tazpkg.
19 genpkg_rules()
20 {
21 mkdir -p $fs/usr/bin $fs/usr/share/applications
22 install -m 0755 $stuff/lxde-session $fs/usr/bin
23 install -m 0755 $stuff/lxde-logout $fs/usr/bin
24 cp -a $stuff/xsessions $fs/usr/share
25 cp -a $stuff/lxde-logout.desktop $fs/usr/share/applications
26 chown -R 0.0 $fs
27 }
29 # Add WM to SLIM available sessions.
30 post_install()
31 {
32 res=$(cat "$1/etc/slim.conf" | grep ^session | sed s/"sessions. *"//)
33 if ! echo "$res" | grep -q $PACKAGE; then
34 echo
35 echo -n "Adding $PACKAGE to /etc/slim.conf..."
36 sed -i "s/^sessions.*/sessions ${res},$PACKAGE/" "$1/etc/slim.conf"
37 status
38 fi
39 }
41 # Remove WM from SLIM available sessions.
42 post_remove()
43 {
44 if grep -q $PACKAGE $root/etc/slim.conf; then
45 sed -i s/,$PACKAGE// "$1/etc/slim.conf"
46 fi
47 }