forked from PackageKit/PackageKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeson_options.txt
More file actions
154 lines (145 loc) · 3.25 KB
/
meson_options.txt
File metadata and controls
154 lines (145 loc) · 3.25 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
#
# General options
#
option('maintainer',
type : 'boolean',
value : false,
description : 'Enable maintainer mode (use strict compiler flags, e.g. -Werror)'
)
option('packaging_backend',
type : 'array',
choices : ['alpm',
'apt',
'dnf',
'dnf5',
'dummy',
'entropy',
'eopkg',
'pisi',
'poldek',
'portage',
'zypp',
'nix',
'freebsd'],
value : ['dummy'],
description : 'The name of the backend to use'
)
option('dnf_vendor',
type : 'combo',
choices : ['fedora', 'mageia', 'openmandriva', 'rosa', 'opensuse'],
value : 'fedora',
description : 'Vendor configuration when using the dnf backend'
)
option('packagekit_user',
type : 'string',
value : 'root',
description : 'User for running the PackageKit daemon'
)
option('local_checkout',
type : 'boolean',
value : false,
description : 'Allow running in local checkout'
)
option('daemon_tests',
type : 'boolean',
value : true,
description : 'Test the daemon using the dummy backend'
)
#
# Features
#
option('systemd',
type : 'boolean',
value : true, description : 'Use systemd and logind'
)
option('offline_update',
type : 'boolean',
value : true,
description : 'Use systemd offline update'
)
option('legacy_tools',
type : 'boolean',
value : false,
description : 'Build the pkcon/pkmon command-line tools'
)
option('elogind',
type : 'boolean',
value : false,
description : 'Use elogind instead of systemd-login'
)
option('gobject_introspection',
type : 'boolean',
value : true,
description : 'Build GObject Introspection data'
)
option('bash_completion',
type : 'boolean',
value : true,
description : 'Bash completion'
)
option('bash_command_not_found',
type : 'boolean',
value : true,
description : 'Build Bash command-not-found functionality'
)
option('gstreamer_plugin',
type : 'boolean',
value : true,
description : 'Build gstreamer plugin functionality'
)
option('gtk_module',
type : 'boolean',
value : true,
description : 'Build GTK+-3 module functionality'
)
option('cron',
type : 'boolean',
value : true,
description : 'Build cron background functionality'
)
option('python_backend',
type : 'boolean',
value : true,
description : 'Provide a Python backend'
)
#
# Documentation
#
option('man_pages',
type : 'boolean',
value : true,
description : 'Generate man pages'
)
option('gtk_doc',
type : 'boolean',
value : false,
description : 'Generate API reference'
)
#
# Locations
#
option('systemdsystemunitdir',
type : 'string',
value : '',
description : 'Directory for systemd service files'
)
option('systemduserunitdir',
type : 'string',
value : '',
description : 'Directory for systemd user service files'
)
option('dbus_sys',
type : 'string',
value : '',
description : 'D-BUS system.d directory'
)
option('dbus_services',
type : 'string',
value : '',
description : 'D-BUS system-services directory'
)
option('pythonpackagedir',
type : 'string',
value : '',
description : 'Location for Python modules'
)