wok view lxpolkit/receipt @ rev 17484

opus-tools: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Dec 30 10:55:38 2014 +0100 (2014-12-30)
parents 8bc3a2fae9c2
children c9e270dd464f
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 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WGET_URL="$SF_MIRROR/lxde/LXPolkit/$TARBALL"
11 WEB_SITE="http://lxde.org"
13 DEPENDS="gtk+ polkit"
14 BUILD_DEPENDS="gtk+-dev polkit-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
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 }