File: meson.build

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 (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