wok view lxsession-edit/receipt @ rev 22352

libcap: include stddef.h
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Nov 19 11:07:25 2019 +0100 (2019-11-19)
parents 7b3799fbd0b0
children ee53899c6189
line source
1 # SliTaz package receipt.
3 PACKAGE="lxsession-edit"
4 VERSION="0.2.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Configure what application start up automatically in LXDE"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://wiki.lxde.org/en/LXSession_Edit"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="$SF_MIRROR/lxde/$TARBALL"
12 TAGS="LXDE"
13 HOST_ARCH="i486 arm"
14 GENERIC_MENUS="no"
16 DEPENDS="gtk+ lxsession"
17 BUILD_DEPENDS="gtk+-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --sysconfdir=/etc \
24 $CONFIGURE_ARGS &&
25 make && make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 cp -a $install/* $fs
32 rm -r $fs/usr/share/locale
34 sed -i 's|^Icon=.*$|Icon=session-properties|' \
35 $fs/usr/share/applications/lxsession-edit.desktop
36 }