foot/completions/meson.build

10 lines
617 B
Meson
Raw Permalink Normal View History

zsh_install_dir = join_paths(get_option('datadir'), 'zsh', 'site-functions')
2021-01-07 22:21:07 +03:00
fish_install_dir = join_paths(get_option('datadir'), 'fish', 'vendor_completions.d')
bash_install_dir = join_paths(get_option('datadir'), 'bash-completion', 'completions')
2019-10-20 11:54:58 +02:00
install_data('zsh/_foot', install_dir: zsh_install_dir)
install_data('zsh/_footclient', install_dir: zsh_install_dir)
2021-01-07 22:21:07 +03:00
install_data('fish/foot.fish', install_dir: fish_install_dir)
install_data('fish/footclient.fish', install_dir: fish_install_dir)
install_data('bash/foot', install_dir: bash_install_dir)
install_data('bash/footclient', install_dir: bash_install_dir)