diff options
Diffstat (limited to 'testing/polkit/PKGBUILD')
-rw-r--r-- | testing/polkit/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/testing/polkit/PKGBUILD b/testing/polkit/PKGBUILD new file mode 100644 index 000000000..072cb033a --- /dev/null +++ b/testing/polkit/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 114364 2011-03-12 22:11:26Z ibiru $ +# Maintainer: Jan de Groot <jgc@archlinux.org> + +pkgname=polkit +pkgver=0.101 +pkgrel=1 +pkgdesc="Application development toolkit for controlling system-wide privileges" +arch=(i686 x86_64) +license=('LGPL') +url="http://www.freedesktop.org/wiki/Software/PolicyKit" +depends=('glib2' 'pam' 'expat') +makedepends=('intltool' 'gtk-doc' 'gobject-introspection') +replaces=('policykit') +options=('!libtool') +source=(http://hal.freedesktop.org/releases/${pkgname}-${pkgver}.tar.gz + polkit.pam) +md5sums=('f925ac93aba3c072977370c1e27feb7f' + '6564f95878297b954f0572bc1610dd15') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr --sysconfdir=/etc \ + --localstatedir=/var --libexecdir=/usr/lib/polkit-1 \ + --disable-static --enable-gtk-doc + make + make DESTDIR="${pkgdir}" install + + install -m644 "${srcdir}/polkit.pam" "${pkgdir}/etc/pam.d/polkit-1" +} |