1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-06-30 15:49:31 +00:00
Purism-Calls/data/meson.build

81 lines
2 KiB
Meson
Raw Normal View History

2018-06-04 15:56:00 +00:00
datadir = get_option('datadir')
sysconfdir = get_option('sysconfdir')
2018-06-04 15:56:00 +00:00
# Desktop file
desktop_file = i18n.merge_file(
input : 'sm.puri.Calls.desktop.in',
output : 'sm.puri.Calls.desktop',
type : 'desktop',
po_dir : '../po',
install : true,
install_dir : join_paths(datadir, 'applications')
)
desktop_file = i18n.merge_file(
input : 'sm.puri.Calls-daemon.desktop.in',
output : 'sm.puri.Calls-daemon.desktop',
type : 'desktop',
po_dir : '../po',
install : true,
install_dir : join_paths(sysconfdir, 'xdg/autostart')
)
2018-06-04 15:56:00 +00:00
desktop_utils = find_program('desktop-file-validate', required: false)
if desktop_utils.found()
test('Validate desktop file', desktop_utils,
args: [join_paths(meson.current_build_dir(),
'sm.puri.Calls.desktop')
])
test('Validate daemon desktop file', desktop_utils,
args: [join_paths(meson.current_build_dir(),
'sm.puri.Calls-daemon.desktop')
])
endif
# Metainfo file
install_data('sm.puri.Calls.metainfo.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',
join_paths(meson.current_source_dir(),
'sm.puri.Calls.metainfo.xml')
])
endif
# Icons
2018-11-23 16:17:35 +00:00
install_data(
'sm.puri.Calls.svg',
install_dir: join_paths(
datadir,
'icons',
'hicolor',
'scalable',
'apps'
)
)
install_data(
'sm.puri.Calls-symbolic.svg',
install_dir: join_paths(
datadir,
'icons',
'hicolor',
'symbolic',
'apps'
)
)
install_data('sm.puri.Calls.gschema.xml',
install_dir: join_paths(get_option('datadir'), 'glib-2.0/schemas')
)
compile_schemas = find_program('glib-compile-schemas', required: false)
if compile_schemas.found()
test('Validate schema file', compile_schemas,
args: ['--strict', '--dry-run', meson.current_source_dir()]
)
endif