diff --git a/data/com.github.tchx84.Flatseal.appdata.xml.in b/data/com.github.tchx84.Flatseal.appdata.xml.in index f4281f46..158198be 100644 --- a/data/com.github.tchx84.Flatseal.appdata.xml.in +++ b/data/com.github.tchx84.Flatseal.appdata.xml.in @@ -3,6 +3,7 @@ Flatseal com.github.tchx84.Flatseal + com.github.tchx84.Flatseal.desktop CC0-1.0 GPL-3.0-or-later @@ -32,10 +33,12 @@ martin.abente.lahaye@gmail.com Martin Abente Lahaye + + Martin Abente Lahaye + https://github.com/tchx84/flatseal https://github.com/tchx84/flatseal/issues - workstation mobile diff --git a/data/meson.build b/data/meson.build index 02a2162e..bb10f344 100644 --- a/data/meson.build +++ b/data/meson.build @@ -22,10 +22,10 @@ appstream_file = i18n.merge_file( install_dir: join_paths(get_option('datadir'), 'appdata') ) -appstream_util = find_program('appstream-util', required: false) -if appstream_util.found() - test('Validate appstream file', appstream_util, - args: ['validate', appstream_file] +appstreamcli = find_program('appstreamcli', required: false) +if appstreamcli.found() + test('Validate appstream file', appstreamcli, + args: ['validate', '--no-net', '--explain', appstream_file] ) endif