File: README.md

package info (click to toggle)
dbus-broker 33-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,760 kB
  • sloc: ansic: 31,039; makefile: 70; python: 47; sh: 36
file content (76 lines) | stat: -rw-r--r-- 1,774 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# 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.17
  glibc >= 2.16
  libaudit >= 3.0               (optional)
  libcap-ng >= 0.6              (optional)
  libselinux >= 3.2             (optional)
```

Additionally, the compatibility launcher requires:

```
  systemd >= 230
  expat >= 2.2
```

At build-time, the following software is required:

```
  meson >= 0.60
  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:

```
  $ meson setup build
  $ meson compile -C build
  $ meson test -C build
  $ meson install -C build
```

For custom configuration options see meson_options.txt.

## License

Apache Software License 2.0
See AUTHORS for details.