mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
33 lines
940 B
Bash
33 lines
940 B
Bash
# $Id$
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - moved rules.d directory ownership to polkit.install
|
|
|
|
pkgname=polkit
|
|
pkgver=0.113
|
|
pkgrel=4
|
|
pkgdesc="Application development toolkit for controlling system-wide privileges"
|
|
arch=(i686 x86_64)
|
|
license=(LGPL)
|
|
url="http://www.freedesktop.org/wiki/Software/polkit"
|
|
depends=(glib2 pam expat systemd js17)
|
|
makedepends=(intltool gtk-doc gobject-introspection git)
|
|
install=polkit.install
|
|
source=("http://www.freedesktop.org/software/polkit/releases/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('4b77776c9e4f897dcfe03b2c34198edf')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr --sysconfdir=/etc \
|
|
--localstatedir=/var --libexecdir=/usr/lib/polkit-1 \
|
|
--enable-libsystemd-login=yes --disable-static \
|
|
--enable-gtk-doc --with-os-type=redhat
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
}
|