wok annotate lxqt-common/receipt @ rev 21139

updated libbonoboui and libbonoboui-dev (2.24.3 -> 2.24.5)
author Hans-G?nter Theisgen
date Sat Mar 23 16:05:05 2019 +0100 (2019-03-23)
parents 9e01bc6321ea
children b569b85b0fb9
rev   line source
al@16833 1 # SliTaz package receipt.
al@16833 2
al@16833 3 PACKAGE="lxqt-common"
psychomaniak@17239 4 VERSION="0.8.0"
al@16833 5 CATEGORY="system-tools"
al@16833 6 SHORT_DESC="Common files for LXQt"
al@16833 7 MAINTAINER="al.bobylev@gmail.com"
al@16833 8 LICENSE="GPL2"
al@16833 9 WEB_SITE="https://github.com/lxde/lxqt-common"
psychomaniak@17239 10 TARBALL="$PACKAGE-$VERSION.tar.xz"
psychomaniak@17239 11 WGET_URL="http://lxqt.org/downloads/$VERSION/$TARBALL"
al@17501 12 TAGS="LXQt window-manager"
al@16833 13
al@16833 14 # TODO: add more depends
al@16833 15 DEPENDS="xorg-xprop dbus "
psychomaniak@17239 16 BUILD_DEPENDS="cmake Qt4-dev qmake liblxqt-dev grep libqtxdg-dev"
al@16833 17
al@16833 18 # Rules to configure and make the package.
al@16833 19 compile_rules()
al@16833 20 {
al@16833 21 mkdir build; cd build
al@16833 22 cmake -DCMAKE_INSTALL_PREFIX=/usr .. &&
al@16833 23 make &&
al@16833 24 make DESTDIR=$install install
al@16833 25 }
al@16833 26
al@16833 27 # Rules to gen a SliTaz package suitable for Tazpkg.
al@16833 28 genpkg_rules()
al@16833 29 {
al@16833 30 mkdir -p $fs/usr
al@16833 31 cp -a $install/etc $fs
al@16833 32 cd $fs; patch -p0 < $stuff/settings.diff
al@16833 33 cp -a $install/usr/bin $fs/usr
al@16833 34 cp -a $install/usr/share $fs/usr
al@16833 35 # all themes but 'flat' go to 'lxqt-themes'
al@16833 36 rm -rf $fs/usr/share/lxqt/themes/*
al@16833 37 cp -a $install/usr/share/lxqt/themes/flat $fs/usr/share/lxqt/themes
al@16833 38 }
erjo@18098 39
erjo@18098 40 post_install()
erjo@18098 41 {
pascal@18730 42 res=$(cat "$1/etc/slim.conf" | grep ^session | sed s/"sessions. *"//)
erjo@18098 43 # Adding WM to SLIM available sessions.
erjo@18098 44 if ! echo "$res" | grep -q $PACKAGE; then
pascal@20319 45 echo
erjo@18098 46 echo -n "Adding lxqt to /etc/slim.conf..."
pascal@18730 47 sed -i "s/^sessions.*/sessions ${res},lxqt/" "$1/etc/slim.conf"
erjo@18098 48 status
erjo@18098 49 fi
erjo@18098 50 }
erjo@18098 51
erjo@18098 52 post_remove()
erjo@18098 53 {
erjo@18098 54 # Remove WM from SLIM available sessions.
pascal@18730 55 if grep -q lxqt "$1/etc/slim.conf"; then
pascal@18730 56 sed -i s/,lxqt// "$1/etc/slim.conf"
erjo@18098 57 fi
erjo@18098 58 }
erjo@18098 59