Pass version to sphinx (fixes: pwmt/zathura#32)

This commit is contained in:
Sebastian Ramacher 2018-09-04 18:06:18 +02:00
parent bab5848464
commit edb260f8be

View file

@ -1,6 +1,12 @@
sphinx = find_program('sphinx-build')
custom_target('man pages',
command: [sphinx, '-b', 'man', join_paths(meson.current_source_dir(), 'man'), meson.current_build_dir()],
command: [
sphinx,
'-b', 'man',
'-D', 'version=' + version,
'-D', 'release=' + version,
join_paths(meson.current_source_dir(), 'man'),
meson.current_build_dir()],
output: ['zathura.1', 'zathurarc.5'],
input: [
'man/conf.py',