From 96c3a5828e89adea7287c28c95058c36d28a032a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= Date: Tue, 1 Oct 2024 13:48:57 +0200 Subject: [PATCH] build: Install metainfo file to correct location Appdata files used to be installed to /usr/share/appdata. However, this location has been changed to /usr/share/metainfo in recent versions of the AppStream specification. --- data/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/meson.build b/data/meson.build index 7a394d6..9fa5253 100644 --- a/data/meson.build +++ b/data/meson.build @@ -31,7 +31,7 @@ appstream_file = i18n.merge_file( output: '@0@.metainfo.xml'.format(app_id), po_dir: podir, install: true, - install_dir: datadir / 'appdata' + install_dir: datadir / 'metainfo' ) appstreamcli = find_program('appstreamcli', required: false, disabler: true)