File: meson.build

package info (click to toggle)
xwayland-run 0.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 208 kB
  • sloc: python: 552; makefile: 6; sh: 6
file content (18 lines) | stat: -rw-r--r-- 410 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
man_conf = configuration_data()
man_conf.set('appmansuffix', '1')
man = join_paths(prefix, get_option('mandir'))

manpages = [
    'xwayland-run',
    'wlheadless-run',
    'xwfb-run'
]

foreach manpage : manpages
    configure_file(
            input: manpage + '.man',
            output: manpage + '.1',
            install_dir: join_paths(man, 'man1'),
            configuration: man_conf
    )
endforeach