mirror of
https://gitlab.freedesktop.org/upower/upower.git
synced 2025-12-20 04:20:04 +01:00
13 lines
288 B
Meson
13 lines
288 B
Meson
|
|
zshcompletiondir = get_option('zshcompletiondir')
|
||
|
|
if zshcompletiondir == ''
|
||
|
|
zshcompletiondir = get_option('datadir') / 'zsh' / 'site-functions'
|
||
|
|
endif
|
||
|
|
|
||
|
|
if zshcompletiondir != 'no'
|
||
|
|
install_data(
|
||
|
|
'_upower',
|
||
|
|
install_dir: zshcompletiondir,
|
||
|
|
install_mode: 'rw-r--r--',
|
||
|
|
)
|
||
|
|
endif
|