wok view lxpolkit/receipt @ rev 13715

Added DBD::SQlite
author Brenton Scott <admin@trixarian.net>
date Thu Dec 20 10:05:36 2012 +0200 (2012-12-20)
parents
children 2b9f96603415
line source
1 # SliTaz package receipt.
3 PACKAGE="lxpolkit"
4 VERSION="0.1.0"
5 CATEGORY="x-window"
6 SHORT_DESC="LXDE PolKit manager."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WGET_URL="$SF_MIRROR/lxde/LXPolkit/$TARBALL"
10 WEB_SITE="http://lxde.org"
12 DEPENDS="gtk+ polkit"
13 BUILD_DEPENDS="gtk+-dev polkit-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --sysconfdir=/etc \
21 --libexecdir=/usr/lib/lxde \
22 $CONFIGURE_ARGS &&
23 make && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/share
30 cp -a $install/etc $fs
31 cp -a $install/usr/lib $fs/usr
32 cp -a $install/usr/share/$PACKAGE $fs/usr/share
33 }