1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
install_man('mutter.1')
rst2man = find_program('rst2man')
custom_target('gdctl.1',
input: 'gdctl.rst',
output: 'gdctl.1',
command: [rst2man, '--syntax-highlight=none', '@INPUT@'],
capture: true,
install_dir: mandir + '/man1',
install: true
)
custom_target('gnome-service-client.1',
input: 'gnome-service-client.rst',
output: 'gnome-service-client.1',
command: [rst2man, '--syntax-highlight=none', '@INPUT@'],
capture: true,
install_dir: mandir + '/man1',
install: true
)
|