mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-15 22:52:20 +00:00
22 lines
542 B
Meson
22 lines
542 B
Meson
docbook2man = find_program('docbook2man')
|
|
custom_target('fwupdmgr-man',
|
|
input : 'fwupdmgr.sgml',
|
|
output : 'fwupdmgr.1',
|
|
command : [
|
|
docbook2man, '@INPUT@',
|
|
'--output', meson.current_build_dir(),
|
|
],
|
|
install : true,
|
|
install_dir : join_paths(get_option('mandir'), 'man1'),
|
|
)
|
|
custom_target('dfu-tool-man',
|
|
input : 'dfu-tool.sgml',
|
|
output : 'dfu-tool.1',
|
|
command : [
|
|
docbook2man, '@INPUT@',
|
|
'--output', meson.current_build_dir(),
|
|
],
|
|
install : true,
|
|
install_dir : join_paths(get_option('mandir'), 'man1'),
|
|
)
|