summaryrefslogtreecommitdiff
path: root/community/mate-polkit/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/mate-polkit/PKGBUILD')
-rw-r--r--community/mate-polkit/PKGBUILD35
1 files changed, 35 insertions, 0 deletions
diff --git a/community/mate-polkit/PKGBUILD b/community/mate-polkit/PKGBUILD
new file mode 100644
index 000000000..67d8f1963
--- /dev/null
+++ b/community/mate-polkit/PKGBUILD
@@ -0,0 +1,35 @@
+# $Id: PKGBUILD 104183 2014-01-16 15:57:10Z flexiondotorg $
+# Maintainer : Martin Wimpress <code@flexion.org>
+# Contributor: Giovanni Ricciardi <kar98k.sniper@gmail.com>
+# Contributor: Xpander <xpander0@gmail.com>
+
+pkgname=mate-polkit
+pkgver=1.6.1
+pkgrel=1
+pkgdesc="PolicyKit integration for the MATE desktop"
+url="http://mate-desktop.org"
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('gtk2' 'polkit')
+makedepends=('gobject-introspection' 'mate-common' 'perl-xml-parser')
+options=('!emptydirs')
+groups=('mate')
+source=("http://pub.mate-desktop.org/releases/1.6/${pkgname}-${pkgver}.tar.xz")
+sha1sums=('43afbbb0a9e4c1295bdd0f788ad7effd776dccf2')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ ./configure \
+ --prefix=/usr \
+ --libexecdir=/usr/lib/polkit-mate \
+ --sysconfdir=/etc \
+ --localstatedir=/var \
+ --enable-introspection \
+ --disable-static
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}