wok view mate-polkit/receipt @ rev 17949

pciids: up (20150414).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Apr 16 02:29:06 2015 +0300 (2015-04-16)
parents
children e863f2041090
line source
1 # SliTaz package receipt.
3 PACKAGE="mate-polkit"
4 VERSION="1.9.0"
5 CATEGORY="utilities"
6 LICENSE="GPL3"
7 SHORT_DESC="PolicyKit integration for the MATE desktop."
8 MAINTAINER="yuripourre@gmail.com"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.mate-desktop.org/"
11 WGET_URL="https://github.com/mate-desktop/$PACKAGE/archive/$TARBALL"
13 DEPENDS="gtk+ polkit"
14 BUILD_DEPENDS="wget cacerts autoconf automake libtool itstool \
15 gtk+-dev gtk-doc polkit-dev gobject-introspection-dev mate-common-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./autogen.sh \
21 --prefix=/usr \
22 --libexecdir=/usr/lib/$PACKAGE \
23 --sysconfdir=/etc \
24 --localstatedir=/var \
25 --with-gtk=2.0 \
26 --enable-introspection \
27 --disable-static \
28 $CONFIGURE_ARGS &&
29 make &&
30 make DESTDIR=$DESTDIR install
31 }
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib
36 cp -a $install/etc $fs
37 cp -a $install/usr/lib/*.so* $fs/usr/lib
38 cp -a $install/usr/lib/$PACKAGE $fs/usr/lib/$PACKAGE
39 }