blob: ff4fcfc1ef057a7c175d3cda87b4ace5f96a17b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Maintainer (Manjaro): artoo <artoo@manjaro.org>
# Contributor (Manjaro): kozec <kozec at kozec.com>
# Contributor (Manjaro): Lukas Jirkovsky <l.jirkovsky@gmail.com>
# Contributor (Manjaro): Jan de Groot <jgc@archlinux.org>
# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>
_pkgname=polkit
pkgname=polkit-consolekit
pkgver=0.113+29+g3272a98
pkgrel=4
pkgdesc="PolyciKit with ConsoleKit support for non-systemd systems"
arch=('i686' 'x86_64' 'armv7h')
license=('LGPL')
url="http://www.freedesktop.org/wiki/Software/polkit"
depends=('glib2' 'pam' 'expat' 'js' 'udev')
makedepends=('intltool' 'gtk-doc' 'gobject-introspection' 'git' 'autoconf-archive')
provides=("polkit=$pkgver")
conflicts=('polkit')
options=('!libtool')
install=polkit.install
_commit=3272a988655c3236b55bad70e9a3af20857f384b
#source=("http://www.freedesktop.org/software/polkit/releases/$_pkgname-$pkgver.tar.gz")
source=("git+https://anongit.freedesktop.org/git/polkit#commit=$_commit")
sha256sums=('SKIP')
pkgver() {
cd $_pkgname
git describe --tags | sed 's/-/+/g'
}
prepare() {
cd $_pkgname
NOCONFIGURE=1 ./autogen.sh
}
build() {
cd $_pkgname #-$pkgver
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--sbindir=/usr/bin \
--localstatedir=/var \
--libexecdir=/usr/lib/polkit-1 \
--enable-libsystemd-login=no \
--disable-static \
--enable-gtk-doc \
--with-os-type=redhat
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
}
check() {
cd $_pkgname #-$pkgver
make -k check || :
}
package() {
cd $_pkgname #-$pkgver
make DESTDIR="$pkgdir" install
chown root:102 "$pkgdir"/{etc,usr/share}/polkit-1/rules.d
chmod 750 "$pkgdir"/{etc,usr/share}/polkit-1/rules.d
}
|