33 lines
782 B
Plaintext
33 lines
782 B
Plaintext
# Description: Application development toolkit for controlling system-wide privileges
|
|
# URL: https://gitlab.freedesktop.org/polkit/polkit/
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: glib gobject-introspection intltool mozjs78 nspr util-linux
|
|
|
|
name=polkit
|
|
version=0.118
|
|
release=1
|
|
source=(https://freedesktop.org/software/polkit/releases/$name-$version.tar.gz
|
|
polkit-1)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--enable-libelogind=no \
|
|
--enable-libsystemd-login=no \
|
|
--with-authfw=pam \
|
|
--disable-tests \
|
|
--disable-nls \
|
|
--disable-man-pages
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
install -m 0644 $SRC/polkit-1 $PKG/etc/pam.d
|
|
|
|
rm -r $PKG/usr/share/locale
|
|
}
|