30 lines
858 B
Plaintext
30 lines
858 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: dbus duktape gobject-introspection intltool util-linux
|
|
|
|
name=polkit
|
|
version=121
|
|
release=1
|
|
source=(https://freedesktop.org/software/polkit/releases/$name-$version.tar.gz
|
|
polkit-1)
|
|
|
|
build() {
|
|
prt-get isinst mozjs91 && PKGMK_POLKIT+=' -D js_engine=mozjs'
|
|
|
|
meson setup $name-v.$version build $PKGMK_POLKIT \
|
|
--prefix=/usr \
|
|
--buildtype=plain \
|
|
--wrap-mode nodownload \
|
|
-D b_lto=true \
|
|
-D b_pie=true
|
|
meson compile -C build
|
|
DESTDIR=$PKG meson install -C build
|
|
|
|
chmod 4775 $PKG/usr/bin/pkexec
|
|
chmod 4755 $PKG/usr/lib/polkit-1/polkit-agent-helper-1
|
|
install -m 0644 $SRC/polkit-1 $PKG/etc/pam.d
|
|
|
|
rm -r $PKG/usr/share/locale
|
|
}
|