meson.build 282 B

123456789101112
  1. zshcompletiondir = get_option('zshcompletiondir')
  2. if zshcompletiondir == ''
  3. zshcompletiondir = get_option('datadir') / 'zsh' / 'site-functions'
  4. endif
  5. if zshcompletiondir != 'no'
  6. install_data(
  7. '_libinput',
  8. install_dir: zshcompletiondir,
  9. install_mode: 'rw-r--r--',
  10. )
  11. endif