diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2019-04-27 08:18:24 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2019-04-27 08:18:24 +0200 |
commit | 36e384f7f5dc6b4ba03048a261bee37225c3d856 (patch) | |
tree | a9eabcee4fb9379440b5518f9b4be1d8537a6ff1 /data/meson.build | |
parent | 654b0df859d8bd2723bd1508a3e48d0d30a0ef0d (diff) | |
parent | da62a01238b3d57d39616bfad82bf9a6fb2ac114 (diff) |
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'data/meson.build')
-rw-r--r-- | data/meson.build | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/data/meson.build b/data/meson.build index 9bba15f..aa1d0ec 100644 --- a/data/meson.build +++ b/data/meson.build @@ -1,11 +1,8 @@ -foreach size: [ '16x16', '22x22', '24x24', '32x32', '48x48', 'scalable' ] - suffix = 'png' - if size == 'scalable' - suffix = 'svg' - endif - install_data (join_paths ('icons', size , 'object-crop.' + suffix), - install_dir: join_paths (icondir, 'hicolor', size, 'actions')) -endforeach +install_data (join_paths ('icons', 'hicolor', 'scalable', '@0@.svg'.format(app_id)), + install_dir: join_paths (datadir, 'icons', 'hicolor', 'scalable', 'apps')) + +install_data (join_paths ('icons', 'hicolor', 'symbolic', '@0@-symbolic.svg'.format(app_id)), + install_dir: join_paths (datadir, 'icons', 'hicolor', 'symbolic', 'apps')) install_data ('org.gnome.SimpleScan.gschema.xml', install_dir: join_paths (datadir, 'glib-2.0', 'schemas')) |