File: meson.build

package info (click to toggle)
systemd-netlogd 1.4.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,108 kB
  • sloc: ansic: 14,053; makefile: 29; python: 20; sh: 13
file content (21 lines) | stat: -rw-r--r-- 586 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
sphinx_sources = [
        'conf.py',
        'index.rst']

man_pages = [
        'systemd-netlogd.8']

mandir1 = join_paths(get_option('mandir'), 'man1')

sphinx_build = find_program('sphinx-build-3', 'sphinx-build')

custom_target(
             'man',
              command : [sphinx_build,
                       '-b', 'man',
                        meson.current_source_dir(),
                        meson.current_build_dir()],
              input : sphinx_sources,
              output : man_pages,
              install : true,
              install_dir : '/usr/share/man/man8')