mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-02-02 02:42:19 +01:00
39 lines
958 B
Plaintext
39 lines
958 B
Plaintext
# Description: D-Bus interface for user account query and manipulation
|
|
# URL: https://www.freedesktop.org/wiki/Software/AccountsService/
|
|
# Maintainer: mac-a-r0ni, j at lngn dot net
|
|
# Depends on: vala elogind openal pipewire polkit pulseaudio libva
|
|
# Optional: docbook-xsl xmlto gtk-doc
|
|
|
|
name=accountsservice
|
|
version=23.13.9
|
|
release=1
|
|
source=(https://www.freedesktop.org/software/$name/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
meson setup build \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
--bindir=/usr/bin \
|
|
--sbindir=/usr/sbin \
|
|
--includedir=/usr/include \
|
|
--datadir=/usr/share \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--buildtype=release \
|
|
-D admin_group=wheel \
|
|
-D elogind=true \
|
|
-D docbook=false \
|
|
-D gtk_doc=false \
|
|
-D systemdsystemunitdir=no \
|
|
-D introspection=false \
|
|
-D vapi=false
|
|
meson compile -C build
|
|
|
|
DESTDIR=$PKG meson install -C build
|
|
|
|
rm -rf $PKG/usr/share/locale
|
|
|
|
}
|