3fc5c4c180
We already use asciidoc for the gnome-extensions man page, while the main man page is generated from docbook XML. The former is a much friendlier source format, so use it for both man pages. Hopefully the plain text format encourages updates, to prevent the page from getting as badly out of sync again as it is currently. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1553>
8 lines
243 B
Meson
8 lines
243 B
Meson
custom_target('man page',
|
|
input: ['gnome-shell.txt', 'stylesheet.xsl'],
|
|
output: 'gnome-shell.1',
|
|
command: [a2x, '-D', '@OUTDIR@', '--xsl-file', '@INPUT1@', '-f' ,'manpage', '@INPUT0@'],
|
|
install_dir: mandir + '/man1',
|
|
install: true
|
|
)
|