You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.2 KiB
Meson
37 lines
1.2 KiB
Meson
application_id = 'org.vanillaos.FirstSetup'
|
|
|
|
|
|
scalable_dir = join_paths('hicolor', 'scalable', 'apps')
|
|
symbolic_dir = join_paths('hicolor', 'symbolic')
|
|
actions_dir = join_paths(symbolic_dir, 'actions')
|
|
|
|
|
|
install_data(
|
|
join_paths(scalable_dir, ('@0@.svg').format(application_id)),
|
|
install_dir: join_paths(get_option('datadir'), 'icons', scalable_dir)
|
|
)
|
|
|
|
|
|
install_data(
|
|
join_paths(symbolic_dir, 'apps', ('@0@-symbolic.svg').format(application_id)),
|
|
install_dir: join_paths(get_option('datadir'), 'icons', symbolic_dir, 'apps')
|
|
)
|
|
|
|
|
|
install_data(
|
|
join_paths(actions_dir, 'vanilla-container-terminal-symbolic.svg'),
|
|
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', 'scalable', 'actions')
|
|
)
|
|
install_data(
|
|
join_paths(actions_dir, 'vanilla-package-symbolic.svg'),
|
|
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', 'scalable', 'actions')
|
|
)
|
|
install_data(
|
|
join_paths(actions_dir, 'vanilla-puzzle-piece-symbolic.svg'),
|
|
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', 'scalable', 'actions')
|
|
)
|
|
install_data(
|
|
join_paths(actions_dir, 'vanilla-history-undo-symbolic.svg'),
|
|
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', 'scalable', 'actions')
|
|
)
|