wok-6.x annotate lxdm/receipt @ rev 22442
vlc: remove these deps -> did not help at all
author | Erkan Yilmaz <erkan@slitaz.org> |
---|---|
date | Mon Dec 23 15:27:45 2019 +0000 (2019-12-23) |
parents | 10e4a8f9b413 |
children | d33c3c211ef8 |
rev | line source |
---|---|
pascal@11223 | 1 # SliTaz package receipt. |
pascal@11223 | 2 |
pascal@11223 | 3 PACKAGE="lxdm" |
pankso@19867 | 4 VERSION="0.5.3" |
pascal@11223 | 5 CATEGORY="x-window" |
al@17992 | 6 SHORT_DESC="GUI login manager for LXDE" |
pascal@11223 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@14999 | 8 LICENSE="GPL3" |
pankso@19867 | 9 TARBALL="$PACKAGE-$VERSION.tar.xz" |
pascal@20671 | 10 WEB_SITE="https://lxde.org/" |
pascal@11223 | 11 WGET_URL="$SF_MIRROR/lxde/$TARBALL" |
al@17992 | 12 TAGS="LXDE" |
pascal@11223 | 13 |
pankso@12410 | 14 DEPENDS="xorg-libX11 gtk+ slitaz-configs" |
pankso@12410 | 15 BUILD_DEPENDS="xorg-dev gtk+-dev" |
pankso@12410 | 16 |
pascal@11223 | 17 # Rules to configure and make the package. |
pascal@11223 | 18 compile_rules() |
pascal@11223 | 19 { |
pascal@11223 | 20 ./configure \ |
pascal@11223 | 21 --libexecdir=/usr/lib/lxdm \ |
pascal@11223 | 22 --sysconfdir=/etc \ |
pascal@11223 | 23 --without-pam \ |
pascal@11223 | 24 $CONFIGURE_ARGS && |
pankso@12410 | 25 make && make install |
pascal@11223 | 26 } |
pascal@11223 | 27 |
pascal@11223 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@11223 | 29 genpkg_rules() |
pascal@11223 | 30 { |
pascal@11223 | 31 mkdir -p $fs/etc $fs/usr/share |
pankso@12410 | 32 cp -a $install/etc/lxdm $fs/etc |
pankso@12410 | 33 cp -a $install/usr/lib $fs/usr |
pankso@12410 | 34 cp -a $install/usr/sbin $fs/usr |
pankso@12410 | 35 cp -a $install/usr/share/lxdm $fs/usr/share |
pankso@12410 | 36 cp -a $stuff/init.d $fs/etc |
pankso@12410 | 37 # Use /bin/sh |
pankso@12410 | 38 sed -i s'/bin\/bash/bin\/sh/' $fs/etc/lxdm/* |
pankso@12410 | 39 # Custom SliTaz configuration |
pankso@12410 | 40 # NOTE: will move to slitaz-configs when we have a nice theme |
pankso@12410 | 41 cp -a $stuff/lxdm.conf $fs/etc/lxdm |
pankso@12410 | 42 cp -a $stuff/Xsession $fs/etc/lxdm |
pankso@12410 | 43 cp -a $stuff/PostLogout $fs/etc/lxdm |
pankso@12410 | 44 chown -R root.root $fs |
pascal@11223 | 45 } |