
It's more common to use the dedicated .rst suffix for reStructuredText files, so now that the files were ported, use that. (Renaming the files separately from changing it is less likely to confuse git, thus the separate commit) Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3454>
9 lines
209 B
Meson
9 lines
209 B
Meson
custom_target('man page',
|
|
input: 'gnome-shell.rst',
|
|
output: 'gnome-shell.1',
|
|
command: [rst2man, '--syntax-highlight=none', '@INPUT@'],
|
|
capture: true,
|
|
install_dir: mandir + '/man1',
|
|
install: true
|
|
)
|