1
0
Fork 0
mirror of https://github.com/yshui/picom.git synced 2024-11-11 13:51:02 -05:00
picom/man/meson.build
Yuxuan Shui 9efe81ce5b
man: add manpage for picom-inspect
Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
2024-02-20 16:04:10 +00:00

13 lines
512 B
Meson

mans = ['picom.1', 'picom-inspect.1', 'picom-trans.1']
if get_option('with_docs')
a2x = find_program('a2x')
foreach m : mans
custom_target(m, output: [m], input: [m+'.asciidoc'],
command: [a2x, '-a',
'picom-version='+version,
'--format', 'manpage', '@INPUT@', '-D',
meson.current_build_dir()],
install: true,
install_dir: join_paths(get_option('mandir'), 'man1'))
endforeach
endif