1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
#subdir('icons')
#subdir('resources')
# Desktop file
desktop_conf = configuration_data()
desktop_conf.set('icon', application_id)
desktop_file = i18n.merge_file(
type: 'desktop',
input: configure_file(
input: '@0@.desktop.in.in'.format(base_id),
output: '@BASENAME@',
configuration: desktop_conf
),
output: '@0@.desktop'.format(application_id),
po_dir: podir,
install: true,
install_dir: datadir / 'applications'
)
# Validate Desktop file
if desktop_file_validate.found()
test(
'validate-desktop',
desktop_file_validate,
args: [
desktop_file.full_path()
],
depends: desktop_file,
)
endif
# Appdata
#appdata_conf = configuration_data()
#appdata_conf.set('app-id', application_id)
#appdata_conf.set('gettext-package', gettext_package)
#appdata_file = i18n.merge_file(
# input: configure_file(
# input: '@0@.metainfo.xml.in.in'.format(base_id),
# output: '@BASENAME@',
# configuration: appdata_conf
# ),
# output: '@0@.metainfo.xml'.format(application_id),
# po_dir: podir,
# install: true,
# install_dir: datadir / 'metainfo'
#)
## Validate Appdata
#if appstreamcli.found()
# test(
# 'validate-appdata', appstreamcli,
# args: [
# 'validate', '--no-net', '--explain', appdata_file.full_path()
# ],
# depends: appdata_file,
# )
#endif
# GSchema
gschema_conf = configuration_data()
gschema_conf.set('app-id', application_id)
gschema_conf.set('gettext-package', gettext_package)
configure_file(
input: '@0@.gschema.xml.in'.format(base_id),
output: '@0@.gschema.xml'.format(application_id),
configuration: gschema_conf,
install: true,
install_dir: datadir / 'glib-2.0' / 'schemas'
)
# Validata GSchema
test(
'validate-gschema', glib_compile_schemas,
args: [
'--strict', '--dry-run', meson.current_build_dir()
],
)
|