meson: Add an appdata and a validation test

This adds an appdata, installs it and adds a test to validate it.
This commit is contained in:
Julian Richen
2018-06-04 17:57:40 -04:00
committed by Adrien Plazas
parent d78799708c
commit 6755d97711
2 changed files with 72 additions and 0 deletions

View File

@@ -11,6 +11,18 @@ if desktop_utils.found()
)
endif
# Appdata file
install_data('sm.puri.Calls.appdata.xml',
install_dir: join_paths(datadir, 'metainfo'),
)
appstream_util = find_program('appstream-util', required: false)
if appstream_util.found()
test('Validate appstream file', appstream_util,
args: ['validate-relax', 'sm.puri.Calls.appdata.xml']
)
endif
# Icons
install_data('sm.puri.Calls.png',
install_dir : join_paths(datadir, 'icons', 'hicolor', '256x256', 'apps'))