
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
229 B
Meson
9 lines
229 B
Meson
custom_target('gnome-extensions.1',
|
|
input: 'gnome-extensions.rst',
|
|
output: 'gnome-extensions.1',
|
|
command: [rst2man, '--syntax-highlight=none', '@INPUT@'],
|
|
capture: true,
|
|
install_dir: mandir + '/man1',
|
|
install: true
|
|
)
|