1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-06-13 15:29:32 +00:00
Purism-Calls/data/meson.build
Julian Richen 6755d97711 meson: Add an appdata and a validation test
This adds an appdata, installs it and adds a test to validate it.
2018-06-08 17:02:50 +02:00

29 lines
806 B
Meson

datadir = get_option('datadir')
# Desktop file
install_data('sm.puri.Calls.desktop',
install_dir : join_paths(datadir, 'applications'))
desktop_utils = find_program('desktop-file-validate', required: false)
if desktop_utils.found()
test('Validate desktop file', desktop_utils,
args: ['sm.puri.Calls.desktop']
)
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'))