forked from blueman-project/blueman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson.build
311 lines (269 loc) · 9.58 KB
/
meson.build
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
project(
'blueman', 'c',
version: '2.2-alpha',
license: 'GPL3',
meson_version: '>=0.48.0',
default_options: 'b_lundef=false'
)
package_name = 'blueman'
# Import needed modules
python = import('python3')
gnome = import('gnome')
i18n = import('i18n')
pyprog = python.find_python()
# Make sure Python is installed and found
if not pyprog.found()
error('No valid python3 binary found')
endif
# Setup all directories we install in
prefix = get_option('prefix')
datadir = join_paths([prefix, get_option('datadir')])
pkgdatadir = join_paths([prefix, get_option('datadir'), package_name])
bindir = join_paths([prefix, get_option('bindir')])
libexecdir = join_paths([prefix, get_option('libexecdir')])
schemadir = join_paths([datadir, 'glib-2.0', 'schemas'])
pythondir = join_paths([prefix, python.sysconfig_path('purelib')])
if get_option('policykit')
have_polkit = 'True'
else
have_polkit = 'False'
endif
# Setup congfiguration
conf_data = configuration_data()
conf_data.set('BINDIR', bindir)
conf_data.set('LIBEXECDIR', libexecdir)
conf_data.set('VERSION', meson.project_version())
conf_data.set('PACKAGE', package_name)
conf_data.set('prefix', prefix)
conf_data.set('pkgdatadir', pkgdatadir)
conf_data.set('LOCALEDIR', join_paths(prefix, get_option('localedir')))
conf_data.set('icondir', join_paths(datadir, 'icons'))
conf_data.set('dhconfig', get_option('dhcp-config-path'))
conf_data.set('POLKIT', have_polkit)
conf_data.set('GETTEXT_PACKAGE', package_name)
conf_data.set('PYTHON', pyprog.path())
# Check for build dependencies
pythonlib = dependency('python-' + python.language_version(), required: true)
pygobject = dependency('pygobject-3.0', required: true)
bluez = dependency('bluez', version: '>= 5.0', required: true)
gthread = dependency('gthread-2.0', version: '>= 2.32', required: true)
# Check for systemd to get unit file dirs
systemd = dependency('systemd', required: false)
# Check for runtime deps and when not found fail based on runtime_deps_check
do_runtime_checks = get_option('runtime_deps_check')
gtk = dependency('gtk+-3.0', version: '>= 3.10.', required: do_runtime_checks)
# Configure blueman apps
foreach libexecapp: ['blueman-mechanism', 'blueman-rfcomm-watcher']
configure_file(
input: join_paths('apps', libexecapp + '.in'),
output: libexecapp,
install_dir: libexecdir,
install_mode: 'rwxr-xr-x',
configuration: conf_data
)
endforeach
binapps = ['blueman-adapters', 'blueman-applet', 'blueman-manager',
'blueman-sendto', 'blueman-services', 'blueman-tray']
foreach binapp: binapps
configure_file(
input: join_paths('apps', binapp + '.in'),
output: binapp,
install_dir: bindir,
install_mode: 'rwxr-xr-x',
configuration: conf_data
)
endforeach
# Install all the artwork and icons
# FIXME use strip_directory when meson 0.45.0 is mainstream
install_data(
'data/icons/pixmaps/blueman-battery-10.png',
'data/icons/pixmaps/blueman-battery-20.png',
'data/icons/pixmaps/blueman-battery-30.png',
'data/icons/pixmaps/blueman-battery-40.png',
'data/icons/pixmaps/blueman-battery-50.png',
'data/icons/pixmaps/blueman-battery-60.png',
'data/icons/pixmaps/blueman-battery-70.png',
'data/icons/pixmaps/blueman-battery-80.png',
'data/icons/pixmaps/blueman-battery-90.png',
'data/icons/pixmaps/blueman-battery-100.png',
'data/icons/pixmaps/blueman-lq-10.png',
'data/icons/pixmaps/blueman-lq-20.png',
'data/icons/pixmaps/blueman-lq-30.png',
'data/icons/pixmaps/blueman-lq-40.png',
'data/icons/pixmaps/blueman-lq-50.png',
'data/icons/pixmaps/blueman-lq-60.png',
'data/icons/pixmaps/blueman-lq-70.png',
'data/icons/pixmaps/blueman-lq-80.png',
'data/icons/pixmaps/blueman-lq-90.png',
'data/icons/pixmaps/blueman-lq-100.png',
'data/icons/pixmaps/blueman-rssi-10.png',
'data/icons/pixmaps/blueman-rssi-20.png',
'data/icons/pixmaps/blueman-rssi-30.png',
'data/icons/pixmaps/blueman-rssi-40.png',
'data/icons/pixmaps/blueman-rssi-50.png',
'data/icons/pixmaps/blueman-rssi-60.png',
'data/icons/pixmaps/blueman-rssi-70.png',
'data/icons/pixmaps/blueman-rssi-80.png',
'data/icons/pixmaps/blueman-rssi-90.png',
'data/icons/pixmaps/blueman-rssi-100.png',
'data/icons/pixmaps/blueman-tpl-10.png',
'data/icons/pixmaps/blueman-tpl-20.png',
'data/icons/pixmaps/blueman-tpl-30.png',
'data/icons/pixmaps/blueman-tpl-40.png',
'data/icons/pixmaps/blueman-tpl-50.png',
'data/icons/pixmaps/blueman-tpl-60.png',
'data/icons/pixmaps/blueman-tpl-70.png',
'data/icons/pixmaps/blueman-tpl-80.png',
'data/icons/pixmaps/blueman-tpl-90.png',
'data/icons/pixmaps/blueman-tpl-100.png',
install_dir: join_paths([datadir, package_name, 'pixmaps'])
)
install_subdir(
'data/icons/hicolor',
install_dir: join_paths([datadir, 'icons'])
)
# GtkBuilder UI files
install_subdir(
'data/ui',
install_dir: pkgdatadir
)
# Gsettings and pin database
install_data('data/org.blueman.gschema.xml', install_dir: schemadir)
install_data('data/pin-code-database.xml', install_dir: pkgdatadir)
# Merge translation into policy file
i18n.merge_file(
input: 'data/configs/org.blueman.policy.in',
output: 'org.blueman.policy',
type: 'xml',
po_dir: 'po',
data_dirs: 'data/configs',
install: true,
install_dir: join_paths(datadir, 'polkit-1', 'actions'),
)
# Merge translations into desktop files
i18n.merge_file(
input: 'data/blueman.desktop.in',
output: 'blueman.desktop',
type: 'desktop',
po_dir: 'po',
install: true,
install_dir: join_paths([get_option('sysconfdir'), 'xdg', 'autostart']),
)
i18n.merge_file(
input: 'data/blueman-adapters.desktop.in',
output: 'blueman-adapters.desktop',
type: 'desktop',
po_dir: 'po',
install: true,
install_dir: join_paths([datadir,'applications']),
)
i18n.merge_file(
input: 'data/blueman-manager.desktop.in',
output: 'blueman-manager.desktop',
type: 'desktop',
po_dir: 'po',
install: true,
install_dir: join_paths([datadir,'applications']),
)
i18n.merge_file(
input: 'data/thunar-sendto-blueman.desktop.in',
output: 'thunar-sendto-blueman.desktop',
type: 'desktop',
po_dir: 'po',
install: get_option('thunar-sendto'),
install_dir: join_paths([datadir,'Thunar', 'sendto']),
)
# install manpages
install_man(
'data/man/blueman-adapters.1',
'data/man/blueman-applet.1',
'data/man/blueman-manager.1',
'data/man/blueman-sendto.1',
'data/man/blueman-services.1',
'data/man/blueman-tray.1'
)
# Gather all configurable files
configurable_files = [
['blueman/Constants.py.in',
'Constants.py',
join_paths(pythondir, package_name)],
['data/configs/org.blueman.Applet.service.in',
'org.blueman.Applet.service',
join_paths(datadir, 'dbus-1', 'services')],
['data/configs/org.blueman.Mechanism.service.in',
'org.blueman.Mechanism.service',
join_paths(datadir, 'dbus-1', 'system-services')]
]
systemd_user_dir = get_option('systemduserunitdir')
if systemd_user_dir != ''
systemd_user_path = join_paths(prefix, systemd_user_dir)
elif systemd.found()
systemd_user_path = join_paths(prefix, systemd.get_pkgconfig_variable('systemduserunitdir'))
else
systemd_user_path = ''
endif
if systemd_user_path != ''
configurable_files += [['data/configs/blueman-applet.service.in',
'blueman-applet.service',
systemd_user_path]]
endif
systemd_system_dir = get_option('systemdsystemunitdir')
if systemd_system_dir != ''
systemd_system_path = join_paths(prefix, systemd_system_dir)
elif systemd.found()
systemd_system_path = join_paths(prefix, systemd.get_pkgconfig_variable('systemdsystemunitdir'))
else
systemd_system_path = ''
endif
if systemd_system_path != ''
configurable_files += [['data/configs/blueman-mechanism.service.in',
'blueman-mechanism.service',
systemd_system_path]]
endif
# Generate all configurable files based on conf_data
foreach conf_file: configurable_files
configure_file(
input: conf_file[0],
output: conf_file[1],
install_dir: conf_file[2],
configuration: conf_data
)
endforeach
install_data(
'data/configs/org.blueman.Mechanism.conf',
install_dir: join_paths(get_option('datadir'), 'dbus-1', 'system.d')
)
# Install blueman subdir and exclude files based on configure options
blueman_exclude_files = ['Constants.py.in']
pulseaudio = get_option('pulseaudio')
if not pulseaudio
blueman_exclude_files += 'plugins/manager/PulseAudioProfile.py'
endif
appindicator = get_option('appindicator')
if not appindicator
blueman_exclude_files += 'plugins/applet/AppIndicator.py'
endif
install_subdir(
'blueman',
install_dir: pythondir,
exclude_files: blueman_exclude_files
)
# Install nautilus (plus clones) python plugins for blueman-sendto
foreach name: get_option('sendto-plugins')
dep = dependency('@0@-python'.format(name.to_lower()), required: false)
if not dep.found()
warning('@0@-python not found which is required for @0@_blueman_sendto to work.'.format(name.to_lower()))
endif
sendto_conf = configuration_data()
sendto_conf.set('FILEMANAGER', name)
configure_file(
input: 'sendto/blueman_sendto.py.in',
output: '@0@_blueman_sendto.py'.format(name.to_lower()),
configuration: sendto_conf,
install_dir: join_paths(prefix, datadir, '@0@-python'.format(name.to_lower()), 'extensions')
)
endforeach
# Add data as custom_target does not work in subdirectory
subdir('data')
subdir('po')
subdir('module')