File: meson.build

package info (click to toggle)
btrfsd 0.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 328 kB
  • sloc: ansic: 1,966; xml: 123; python: 114; sh: 98; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 565 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20


# make manual pages
xsltproc = find_program('xsltproc')
custom_target('man-btrfsd',
    input: 'btrfsd.8.xml',
    output: 'btrfsd.8',
    install: true,
    install_dir: join_paths(get_option('mandir'), 'man8'),
    command: [
        xsltproc,
        '--nonet',
        '--stringparam', 'man.output.quietly', '1',
        '--stringparam', 'funcsynopsis.style', 'ansi',
        '--stringparam', 'man.th.extra1.suppress', '1',
        '-o', '@OUTPUT@',
        'http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl',
        '@INPUT@'
    ]
)