mirror of
https://github.com/virt-manager/virt-manager.git
synced 2024-12-22 13:34:07 +03:00
dd909f20bc
Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
20 lines
485 B
Meson
20 lines
485 B
Meson
fs = import('fs')
|
|
|
|
install_data(
|
|
'org.virt-manager.virt-manager.gschema.xml',
|
|
install_dir: datadir / 'glib-2.0' / 'schemas',
|
|
)
|
|
|
|
bash_completion_template = files('bash-completion.sh.in')
|
|
|
|
foreach script: ['virt-install', 'virt-clone', 'virt-xml']
|
|
name = fs.name(script)
|
|
configure_file(
|
|
input: bash_completion_template,
|
|
output: name,
|
|
configuration: {'SCRIPTNAME': name},
|
|
install: true,
|
|
install_dir: datadir / 'bash-completion' / 'completions',
|
|
)
|
|
endforeach
|