-
Notifications
You must be signed in to change notification settings - Fork 259
/
meson_options.txt
113 lines (97 loc) · 2.23 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
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
# SPDX-FileCopyrightText: GSConnect Developers https://github.com/GSConnect
#
# SPDX-License-Identifier: GPL-2.0-or-later
# See https://github.com/GSConnect/gnome-shell-extension-gsconnect/wiki/Packaging
# GNOME Shell LIBDIR
option(
'gnome_shell_libdir',
type: 'string',
value: '',
description: 'LIBDIR for GNOME Shell (eg. $LIBDIR/gnome-shell/Gvc-1.0.typelib)'
)
# DBus service file
option(
'session_bus_services_dir',
type: 'string',
value: '',
description: 'DBus session services directory'
)
# firewalld service file
option(
'firewalld',
type: 'boolean',
value: false,
description: 'Install firewalld service file'
)
# External program paths
# NOTE: these are only useful for distributions like NixOS that don't use PATH
option(
'ffmpeg_path',
type: 'string',
value: 'ffmpeg',
description: 'Absolute path to ffmpeg binary'
)
option(
'openssl_path',
type: 'string',
value: 'openssl',
description: 'Absolute path to openssl binary'
)
option(
'sshadd_path',
type: 'string',
value: 'ssh-add',
description: 'Absolute path to ssh-add binary'
)
option(
'sshkeygen_path',
type: 'string',
value: 'ssh-keygen',
description: 'Absolute path to ssh-keygen binary'
)
# Nautilus/Nemo Python extension installation
option(
'nautilus',
type: 'boolean',
value: true,
description: 'Install file browser extension for Nautilus (Files)'
)
option(
'nemo',
type: 'boolean',
value: false,
description: 'Install file browser extension for Nemo'
)
# WebExtension manifest installation
# NOTE: this is NOT the WebExtension, but is REQUIRED for it to work.
option(
'webextension',
type: 'boolean',
value: true,
description: 'Install WebExtension manifest for Chrome, Chromium & Firefox'
)
# Override manifest install so that BROWSER_NMHDIR/foo.json
option(
'chrome_nmhdir',
type: 'string',
value: '',
description: 'Native Messaging Host directory for Chrome'
)
option(
'chromium_nmhdir',
type: 'string',
value: '',
description: 'Native Messaging Host directory for Chromium'
)
option(
'mozilla_nmhdir',
type: 'string',
value: '',
description: 'Native Messaging Host directory for Mozilla'
)
option(
'installed_tests',
type: 'boolean',
value: true,
description: 'Install tests'
)