Files
gnome-shell/subprojects/extensions-tool/man/meson.build
Jan Tojnar d3f85ae6ea extension-tool: Use asciidoctor for manpage
The Python implementation of Asciidoc is abandoned and stuck with Python 2.
Asciidoctor is a maintained implementation written in Ruby.

https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/992
2020-02-11 04:22:32 +01:00

8 lines
225 B
Meson

custom_target('gnome-extensions.1',
input: 'gnome-extensions.adoc',
output: 'gnome-extensions.1',
command: [asciidoctor, '-D', '@OUTDIR@', '-b', 'manpage', '@INPUT@'],
install_dir: mandir + '/man1',
install: true
)