1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
if get_option('gtk_doc')
expand_content_md_files = [
'overview.md',
'build-howto.md',
'initialization.md',
'Event-naming-spec-0.0.0.md',
'Feedback-theme-spec-0.0.0.md',
]
toml_data = configuration_data()
toml_data.set('VERSION', meson.project_version())
libfeedback_toml = configure_file(
input: 'libfeedback.toml.in',
output: 'libfeedback.toml',
configuration: toml_data,
)
dependency(
'gi-docgen',
version: '>= 2021.1',
fallback: ['gi-docgen', 'dummy_dep'],
native: true,
required: get_option('gtk_doc'),
)
gidocgen = find_program('gi-docgen')
docs_dir = datadir / 'doc'
custom_target(
'libfeedback-doc',
input: [libfeedback_toml, libfeedback_gir[0]],
output: 'libfeedback-0',
command: [
gidocgen,
'generate',
'--quiet',
'--fatal-warnings',
'--add-include-path=@0@'.format(meson.current_build_dir() / '../src'),
'--config=@INPUT0@',
'--output-dir=@OUTPUT@',
'--no-namespace-dir',
'--content-dir=@0@'.format(meson.current_source_dir()),
'@INPUT1@',
],
depend_files: [expand_content_md_files],
build_by_default: true,
install: true,
install_dir: docs_dir,
)
endif
if get_option('man')
manpages = [['fbcli', 1], ['fbd-theme-validate', 1], ['feedbackd', 8], ['feedback-themes', 5]]
rst2man = find_program('rst2man', 'rst2man.py', required: false)
rst2man_flags = ['--syntax-highlight=none']
foreach manpage : manpages
man_name = manpage[0]
man_section = manpage[1]
custom_target(
'man-@0@'.format(man_name),
input: '@0@.rst'.format(man_name),
output: '@0@.@1@'.format(man_name, man_section),
command: [rst2man, rst2man_flags, '@INPUT@'],
capture: true,
install: true,
install_dir: get_option('mandir') / 'man@0@'.format(man_section),
)
endforeach
endif
|