build: Set up dual install for flatpak
Part of https://gitlab.gnome.org/GNOME/Initiatives/issues/1; Sets up dual installation for flatpaks, allowing us to build and run geary without affecting our system install. This will allow testing of nightlies and CI artifacts as well via the flatpak, so we can iterate on designs and share bundles to test with.
This commit is contained in:
parent
c3fc7c4533
commit
bfcee9bff7
26 changed files with 127 additions and 121 deletions
|
|
@ -41,10 +41,19 @@ install_data(icon_files,
|
|||
install_dir: join_paths(system_icons_dir, 'scalable', 'actions'),
|
||||
)
|
||||
|
||||
install_data(join_paths('hicolor', 'scalable', 'apps', 'org.gnome.Geary.svg'),
|
||||
install_dir: join_paths(system_icons_dir, 'scalable', 'apps'),
|
||||
scalable_dir = join_paths('hicolor', 'scalable', 'apps')
|
||||
|
||||
install_data(
|
||||
join_paths(scalable_dir, 'org.gnome.Geary.svg'),
|
||||
install_dir: join_paths(datadir, 'icons', scalable_dir),
|
||||
rename: '@0@.svg'.format(geary_id)
|
||||
)
|
||||
|
||||
install_data(join_paths('hicolor', 'symbolic', 'apps', 'org.gnome.Geary-symbolic.svg'),
|
||||
install_dir: join_paths(system_icons_dir, 'symbolic', 'apps'),
|
||||
symbolic_dir = join_paths('hicolor', 'symbolic', 'apps')
|
||||
|
||||
install_data(
|
||||
join_paths(symbolic_dir, 'org.gnome.Geary-symbolic.svg'),
|
||||
install_dir: join_paths(datadir, 'icons', symbolic_dir),
|
||||
rename: '@0@-symbolic.svg'.format(geary_id)
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue