[util] Towards building manpages

TODO:
1. Only when docs are enabled?
2. Installdir
3. How to include in release?

Fixes https://github.com/harfbuzz/harfbuzz/issues/5208
This commit is contained in:
Behdad Esfahbod 2025-03-26 22:20:57 -06:00
parent bd5b8a1feb
commit 7f10c0edfd

View file

@ -75,3 +75,22 @@ else
hb_shape = disabler()
hb_subset = disabler()
endif
# Build man pages
help2man = find_program('help2man', required: false)
# If found, invoke it on our four binaries to build man pages
# If not found, just skip this step
if help2man.found()
foreach binary: [hb_view, hb_shape, hb_info, hb_subset]
target = binary.name() + '.1'
manpage = custom_target(target,
input: binary,
output: target,
command: [help2man, '--help-option=--help-all', '--no-info', '--output=' + '@OUTPUT@', '@INPUT@'],
build_by_default: true,
#install: true,
#install_dir: ???,
)
endforeach
endif