summaryrefslogtreecommitdiff
path: root/man/meson.build
blob: c0b66acdd179e0bbc423a67c5e9df43127474d45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
docbook2man = find_program('docbook2man')
custom_target('colormgr-man',
  input : 'colormgr.sgml',
  output : 'colormgr.1',
  command : [
    docbook2man, '@INPUT@',
    '--output', meson.current_build_dir(),
  ],
  install : true,
  install_dir : join_paths(mandir, 'man1'),
)
custom_target('cd-create-profile-man',
  input : 'cd-create-profile.sgml',
  output : 'cd-create-profile.1',
  command : [
    docbook2man, '@INPUT@',
    '--output', meson.current_build_dir(),
  ],
  install : true,
  install_dir : join_paths(mandir, 'man1'),
)
custom_target('cd-fix-profile-man',
  input : 'cd-fix-profile.sgml',
  output : 'cd-fix-profile.1',
  command : [
    docbook2man, '@INPUT@',
    '--output', meson.current_build_dir(),
  ],
  install : true,
  install_dir : join_paths(mandir, 'man1'),
)
custom_target('cd-it8-man',
  input : 'cd-it8.sgml',
  output : 'cd-it8.1',
  command : [
    docbook2man, '@INPUT@',
    '--output', meson.current_build_dir(),
  ],
  install : true,
  install_dir : join_paths(mandir, 'man1'),
)