mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 05:25:05 +00:00
[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:
parent
bd5b8a1feb
commit
7f10c0edfd
1 changed files with 19 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue