mirror of
https://github.com/labwc/labwc.git
synced 2025-10-29 05:40:24 -04:00
38 lines
757 B
Meson
38 lines
757 B
Meson
scdoc = find_program('scdoc', required: get_option('man-pages'))
|
|
|
|
if scdoc.found()
|
|
manpages = [
|
|
'labwc.1',
|
|
'labwc-actions.5',
|
|
'labwc-config.5',
|
|
'labwc-menu.5',
|
|
'labwc-theme.5',
|
|
]
|
|
foreach manpage : manpages
|
|
markdown = manpage + '.scd'
|
|
custom_target(
|
|
manpage,
|
|
input: markdown,
|
|
output: manpage,
|
|
command: scdoc,
|
|
feed: true,
|
|
capture: true,
|
|
install: true,
|
|
install_dir: join_paths(get_option('mandir'), 'man' + manpage.split('.')[-1])
|
|
)
|
|
endforeach
|
|
endif
|
|
|
|
install_data(
|
|
[
|
|
'autostart',
|
|
'environment',
|
|
'menu.xml',
|
|
'README',
|
|
'shutdown',
|
|
'themerc',
|
|
'rc.xml',
|
|
'rc.xml.all'
|
|
],
|
|
install_dir: get_option('datadir') / 'doc' / meson.project_name()
|
|
)
|