1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-06-25 05:09:30 +00:00

data: rename appdata to metainfo

Appstream nowadays prefers `.metainfo.xml`:
https://www.freedesktop.org/software/appstream/docs/chap-Metadata.html
This commit is contained in:
David Heidelberg 2020-05-13 11:06:23 +02:00
parent 11cc1a219a
commit b95cccd510
No known key found for this signature in database
GPG key ID: 60023FC4D3492072
2 changed files with 3 additions and 3 deletions

View file

@ -20,8 +20,8 @@ if desktop_utils.found()
])
endif
# Appdata file
install_data('sm.puri.Calls.appdata.xml',
# Metainfo file
install_data('sm.puri.Calls.metainfo.xml',
install_dir: join_paths(datadir, 'metainfo'),
)
@ -30,7 +30,7 @@ if appstream_util.found()
test('Validate appstream file', appstream_util,
args: ['validate-relax',
join_paths(meson.current_source_dir(),
'sm.puri.Calls.appdata.xml')
'sm.puri.Calls.metainfo.xml')
])
endif