blob: 0c3dd04b1cd0467c62f9e5aaf9baea6977036f2b (
plain)
1 # Description: Framework for defining and tracking users, login sessions, and seats
2 # URL: http://www.freedesktop.org/wiki/Software/ConsoleKit
3 # Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
4 # Depends on: polkit dbus-glib xorg-libx11
5
6 name=consolekit
7 version=0.4.6
8 release=2
9 source=(
10 http://www.freedesktop.org/software/ConsoleKit/dist/ConsoleKit-0.4.6.tar.xz
11 pam-foreground-compat.ck
12 )
13
14 build() {
15 cd ConsoleKit-$version
16 ./configure \
17 --prefix=/usr \
18 --localstatedir=/var \
19 --libexec=/usr/lib/ConsoleKit/libexec \
20 --enable-udev-acl
21 make
22 make DESTDIR=$PKG install
23
24 # This script creates /var/run/console/$USER
25 # Required by the "at_console" feature of the dbus policy system
26 # This is an alternative to pam_console
27 install -D -m 0755 -o root -g root $SRC/pam-foreground-compat.ck $PKG/usr/etc/ConsoleKit/run-session.d/pam-foreground-compat.ck
28 }
|