1theme_dir = join_paths(get_option('prefix'), 'share', 'sounds', meson.project_name())
2
3conf_data = configuration_data()
4conf_data.set('ThemeName', meson.project_name())
5
6configure_file(input : 'src/index.theme.in',
7              output : 'index.theme',
8              configuration : conf_data,
9              install_dir: theme_dir)
10
11install_subdir('src/stereo', install_dir: theme_dir)
12