File: INSTALL.md

package info (click to toggle)
bolt 0.9.10-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,844 kB
  • sloc: ansic: 29,085; python: 2,938; xml: 460; javascript: 269; sh: 166; makefile: 14
file content (21 lines) | stat: -rw-r--r-- 635 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# BUILDING

The [meson][meson] build system is used to configure and compile bolt.

- `$ meson build`           # configure bolt, use build as buildir
- `$ ninja -C build`        # compile it
- `$ ninja -C build test`   # run the tests

NB: `boltd` comes with configuration files for dbus and PolicyKit that
need to be installed to the proper locations. It is probably a good
idea to manually specify them with the correct values for the current
distribution. This can be done by passing the corresponding options
to meson:

```bash
--sysconfdir=/etc
--localstatedir=/var
--sharedstatedir=/var/lib
```

[meson]: http://mesonbuild.com/