
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
8 lines
225 B
Meson
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
|
|
)
|