From 918a7c76dfb3a917cc43229b6366b364cef464e5 Mon Sep 17 00:00:00 2001 From: davidovski Date: Wed, 19 Jan 2022 16:40:48 +0000 Subject: added dbus --- repo/system/dbus.xibuild | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 repo/system/dbus.xibuild (limited to 'repo/system') diff --git a/repo/system/dbus.xibuild b/repo/system/dbus.xibuild new file mode 100644 index 0000000..e7fc082 --- /dev/null +++ b/repo/system/dbus.xibuild @@ -0,0 +1,32 @@ +#!/bin/bash + +DEPS=(elogind) + +PKG_VER=1.12.20 +SOURCE=https://dbus.freedesktop.org/releases/dbus/dbus-$PKG_VER.tar.gz + +DESC="A message bus system allowing applications to talk to one another" + +build () { + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --enable-user-session \ + --disable-doxygen-docs \ + --disable-xml-docs \ + --disable-static \ + --with-systemduserunitdir=no \ + --with-systemdsystemunitdir=no \ + --docdir=/usr/share/doc/dbus-$PKG_VER \ + --with-console-auth-dir=/run/console \ + --with-system-pid-file=/run/dbus/pid \ + --with-system-socket=/run/dbus/system_bus_socket && + make +} + +package () { + make DESTDIR=$PKG_DEST install + + chown -v root:messagebus $PKG_DEST/usr/libexec/dbus-daemon-launch-helper && + chmod -v 4750 $PKG_DEST/usr/libexec/dbus-daemon-launch-helper +} -- cgit v1.2.1