The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
278 B
10 lines
278 B
4 years ago
|
## Specify man page locale during installation
|
||
|
|
||
|
Locale directories can now be passed to `install_man`:
|
||
|
|
||
|
```meson
|
||
|
# instead of
|
||
|
# install_data('foo.fr.1', install_dir: join_paths(get_option('mandir'), 'fr', 'man1'), rename: 'foo.1')`
|
||
|
install_man('foo.fr.1', locale: 'fr')
|
||
|
```
|