File: meson.build

package info (click to toggle)
dbus-broker 37-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 3,012 kB
  • sloc: ansic: 32,667; makefile: 146; sh: 56; python: 44
file content (19 lines) | stat: -rw-r--r-- 617 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
custom_target(
        'man-dbus-broker',
        output: 'dbus-broker.1',
        input: 'dbus-broker.rst',
        command: [prog_rst2man, '@INPUT@', '@OUTPUT@'],
        install: true,
        install_dir: join_paths(get_option('mandir'), 'man1')
)

if use_launcher
        custom_target(
                'man-dbus-broker-launch',
                 output: 'dbus-broker-launch.1',
                 input: 'dbus-broker-launch.rst',
                 command: [prog_rst2man, '@INPUT@', '@OUTPUT@'],
                 install: true,
                 install_dir: join_paths(get_option('mandir'), 'man1')
        )
endif