wok view lxpolkit/receipt @ rev 20413

*l2tp*: add doc (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 02 11:37:36 2018 +0200 (2018-08-02)
parents 2b9f96603415
children 6e8b1bcb30e2
line source
1 # SliTaz package receipt.
3 PACKAGE="lxpolkit"
4 VERSION="0.1.0"
5 CATEGORY="x-window"
6 SHORT_DESC="LXDE PolicyKit authentication agent"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WGET_URL="$SF_MIRROR/lxde/LXPolkit/$TARBALL"
11 WEB_SITE="http://lxde.org"
12 TAGS="LXDE"
14 DEPENDS="gtk+ polkit"
15 BUILD_DEPENDS="gtk+-dev polkit-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --sysconfdir=/etc \
22 --libexecdir=/usr/lib/lxde \
23 $CONFIGURE_ARGS &&
24 make && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/share
31 cp -a $install/etc $fs
32 cp -a $install/usr/lib $fs/usr
33 cp -a $install/usr/share/$PACKAGE $fs/usr/share
34 }