mirror of
https://gitlab.freedesktop.org/upower/upower.git
synced 2025-12-20 02:00:03 +01:00
12 lines
288 B
Meson
12 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
|