# dbus-broker **Repository Path**: sunxinwu/dbus-broker ## Basic Information - **Project Name**: dbus-broker - **Description**: Linux D-Bus Message Broker - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2021-06-02 - **Last Updated**: 2023-04-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # dbus-broker - Linux D-Bus Message Broker The dbus-broker project is an implementation of a message bus as defined by the D-Bus specification. Its aim is to provide high performance and reliability, while keeping compatibility to the D-Bus reference implementation. It is exclusively written for Linux systems, and makes use of many modern features provided by recent linux kernel releases. **WIKI:** https://github.com/bus1/dbus-broker/wiki **BUG REPORTS:** https://github.com/bus1/dbus-broker/issues **GIT:** ``` Cloning over ssh: git@github.com:bus1/dbus-broker.git Cloning over https: https://github.com/bus1/dbus-broker.git ``` **GITWEB:** https://github.com/bus1/dbus-broker **MAILINGLIST:** https://groups.google.com/forum/#!forum/bus1-devel ## Requirements The requirements for dbus-broker are: ``` Linux kernel >= 4.14 (>=4.10 works, but lacks important security-related AF_UNIX patches) glibc >= 2.16 libaudit >= 2.7 (optional) libselinux >= 2.5 (optional) ``` Additionally, the compatibility launcher requires: ``` systemd >= 230 expat >= 2.2 ``` At build-time, the following software is required: ``` meson >= 0.44 pkg-config >= 0.29 python-docutils >= 0.13 linux-api-headers >= 4.13 dbus >= 1.10 (optional: only for tests) ``` ## Install The meson build-system is used for dbus-broker. Contact upstream documentation for detailed help. In most situations the following commands are sufficient to build and install dbus-broker from source: ``` $ mkdir build $ cd build $ meson setup . .. $ ninja $ ninja test $ ninja install ``` For custom configuration options see meson_options.txt. ## License Apache Software License 2.0 See AUTHORS for details.