2018-06-04 15:56:00 +00:00
|
|
|
datadir = get_option('datadir')
|
2019-08-08 13:38:28 +00:00
|
|
|
sysconfdir = get_option('sysconfdir')
|
2018-06-04 15:56:00 +00:00
|
|
|
|
2018-06-04 21:57:40 +00:00
|
|
|
# Desktop file
|
2018-06-04 15:56:00 +00:00
|
|
|
install_data('sm.puri.Calls.desktop',
|
|
|
|
install_dir : join_paths(datadir, 'applications'))
|
2019-08-08 13:38:28 +00:00
|
|
|
install_data('sm.puri.Calls-daemon.desktop',
|
|
|
|
rename : 'sm.puri.Calls.desktop',
|
|
|
|
install_dir : join_paths(sysconfdir, 'xdg/autostart'))
|
2018-06-04 15:56:00 +00:00
|
|
|
|
2018-06-04 21:57:40 +00:00
|
|
|
desktop_utils = find_program('desktop-file-validate', required: false)
|
|
|
|
if desktop_utils.found()
|
2018-06-11 15:15:44 +00:00
|
|
|
test('Validate desktop file', desktop_utils,
|
|
|
|
args: [join_paths(meson.current_source_dir(),
|
|
|
|
'sm.puri.Calls.desktop')
|
|
|
|
])
|
2019-08-08 13:38:28 +00:00
|
|
|
test('Validate daemon desktop file', desktop_utils,
|
|
|
|
args: [join_paths(meson.current_source_dir(),
|
|
|
|
'sm.puri.Calls-daemon.desktop')
|
|
|
|
])
|
2018-06-04 21:57:40 +00:00
|
|
|
endif
|
|
|
|
|
2018-06-04 21:57:40 +00:00
|
|
|
# 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()
|
2018-06-11 15:15:44 +00:00
|
|
|
test('Validate appstream file', appstream_util,
|
|
|
|
args: ['validate-relax',
|
|
|
|
join_paths(meson.current_source_dir(),
|
|
|
|
'sm.puri.Calls.appdata.xml')
|
|
|
|
])
|
2018-06-04 21:57:40 +00:00
|
|
|
endif
|
|
|
|
|
2018-06-04 21:57:40 +00:00
|
|
|
# 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'
|
|
|
|
)
|
|
|
|
)
|