1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
diff --git a/plugins/snap/meson.build b/plugins/snap/meson.build
--- a/plugins/snap/meson.build
+++ b/plugins/snap/meson.build
@@ -5,6 +5,7 @@ shared_module(
sources : [
'gs-plugin-snap.c'
],
+ install_tag: 'snap',
install : true,
install_dir: plugin_dir,
c_args : cargs,
@@ -14,6 +15,7 @@ metainfo = 'org.gnome.Software.Plugin.Snap.metainfo.xml'
i18n.merge_file(
input: metainfo + '.in',
+ install_tag: 'snap',
output: metainfo,
type: 'xml',
po_dir: join_paths(meson.project_source_root(), 'po'),
diff --git a/src/meson.build b/src/meson.build
--- a/src/meson.build
+++ b/src/meson.build
@@ -269,6 +269,7 @@ if get_option('snap')
output: 'gnome-software-local-file-snap.desktop.tmp',
configuration: cdata
),
+ install_tag: 'snap',
output: 'gnome-software-local-file-snap.desktop',
type: 'desktop',
po_dir: join_paths(meson.project_source_root(), 'po'),
|