-
Notifications
You must be signed in to change notification settings - Fork 1
/
meson_options.txt
69 lines (60 loc) · 1.62 KB
/
meson_options.txt
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
option(
'systemd_system_unit_dir',
type: 'string',
value: '',
description: 'systemd system services directory [default=$libdir/systemd/system]'
)
option(
'systemd_sysusers_dir',
type: 'string',
value: '',
description: 'tmpfiles directory [default=$libdir/sysusers.d]'
)
option(
'systemd_tmpfiles_dir',
type: 'string',
value: '',
description: 'tmpfiles directory [default=$libdir/tmpfiles.d]'
)
option(
'systemd_environment_dir',
type: 'string',
value: '',
description: 'tmpfiles directory [default=$libdir/environment.d]'
)
option(
'systemd_user_environment_generators_dir',
type: 'string',
value: '',
description: 'systemd user environment generators directory [default=$libdir/systemd/system/user-environment-generators]'
)
option(
'kolibri_user',
type: 'string',
value: 'kolibri',
description: 'user to create for the system service'
)
option(
'kolibri_user_home',
type: 'string',
value: '',
description: 'home directory for the system user [default=$localstatedir/lib/kolibri]'
)
option(
'endlesskey_user_home',
type: 'string',
value: '',
description: 'home directory for the Endless Key system user [default=$localstatedir/lib/endless-key]'
)
option(
'kolibri_flatpak_id',
type: 'string',
value: 'org.learningequality.Kolibri',
description: 'identifier for the Kolibri flatpak [default=org.learningequality.Kolibri]'
)
option(
'endlesskey_flatpak_id',
type: 'string',
value: 'org.endlessos.Key',
description: 'identifier for the Endless Key flatpak [default=org.endlessos.Key]'
)