mirror of
https://github.com/yshui/picom.git
synced 2024-11-03 04:33:49 -05:00
8ddbebb5d1
leftovers: 1) config file path. Has to implement compatibility functionalities before we can change it. 2) links in man pages. Has to migrate the repo first. 3) _COMPTON_SHADOW, it has become a defacto standard, so we have to keep supporting it. 4) dbus names, undecided whether we should/could change it. Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
12 lines
454 B
Meson
12 lines
454 B
Meson
mans = ['picom.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: 'share/man/man1/')
|
|
endforeach
|
|
endif
|