wok diff mate-polkit/receipt @ rev 17012
Remove scrollkeeper
author | Yuri Pourre <yuripourre@gmail.com> |
---|---|
date | Tue Aug 12 17:37:17 2014 -0300 (2014-08-12) |
parents | |
children | e863f2041090 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/mate-polkit/receipt Tue Aug 12 17:37:17 2014 -0300 1.3 @@ -0,0 +1,39 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="mate-polkit" 1.7 +VERSION="1.9.0" 1.8 +CATEGORY="utilities" 1.9 +LICENSE="GPL3" 1.10 +SHORT_DESC="PolicyKit integration for the MATE desktop." 1.11 +MAINTAINER="yuripourre@gmail.com" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.13 +WEB_SITE="http://www.mate-desktop.org/" 1.14 +WGET_URL="https://github.com/mate-desktop/$PACKAGE/archive/$TARBALL" 1.15 + 1.16 +DEPENDS="gtk+ polkit" 1.17 +BUILD_DEPENDS="wget cacerts autoconf automake libtool itstool \ 1.18 +gtk+-dev gtk-doc polkit-dev gobject-introspection-dev mate-common-dev" 1.19 + 1.20 +# Rules to configure and make the package. 1.21 +compile_rules() 1.22 +{ 1.23 + ./autogen.sh \ 1.24 + --prefix=/usr \ 1.25 + --libexecdir=/usr/lib/$PACKAGE \ 1.26 + --sysconfdir=/etc \ 1.27 + --localstatedir=/var \ 1.28 + --with-gtk=2.0 \ 1.29 + --enable-introspection \ 1.30 + --disable-static \ 1.31 + $CONFIGURE_ARGS && 1.32 + make && 1.33 + make DESTDIR=$DESTDIR install 1.34 +} 1.35 + 1.36 +genpkg_rules() 1.37 +{ 1.38 + mkdir -p $fs/usr/lib 1.39 + cp -a $install/etc $fs 1.40 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.41 + cp -a $install/usr/lib/$PACKAGE $fs/usr/lib/$PACKAGE 1.42 +}