forked from BestImageViewer/geeqie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson.build
525 lines (468 loc) · 21.6 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
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
# This file is a part of Geeqie project (https://www.geeqie.org/).
# Copyright (C) 2008 - 2022 The Geeqie Team
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# Meson default directories used in this project:
# prefix - /usr/local
# bindir - bin
# datadir - share
# Meson core options:
# buildtype
# debug
# Project expanded default directories:
# prefix /usr/local/
# bindir /usr/local/bin geeqie executable
# gq_bindir /usr/local/lib/geeqie * plugins scripts
# datadir /usr/local/share/
# /usr/local/share/applications geeqie.desktop
# [gq_]appdir /usr/local/share/geeqie/ * template.desktop
# desktopdir /usr/local/share/geeqie/applications plugin desktop files
# appdatadir /usr/local/share/metainfo org.geeqie.Geeqie.appdata.xml
# icondir /usr/local/share/pixmaps geeqie.png icon
# [gq_]helpdir /usr/local/share/doc/geeqie * readme files etc.
# [gq_]htmldir /usr/local/share/doc/geeqie/html * help files
# gq_localedir /usr/locale/share/locale
# mandir1 /usr/local/share/man/man1 man page
# podir project_root/po
# * See meson_options.txt file
project(
'geeqie',
'c',
'cpp',
version : run_command('./version.sh', check : true).stdout().strip(),
license : ['GPL-2.0-or-later'],
meson_version : '>=0.53.0',
default_options : ['warning_level=3', 'buildtype=debugoptimized']
)
# To inhibit warnings from the generated files icons_inline.h and ui_icons.h
add_global_arguments('-Wno-overlength-strings', language : 'c')
# Project requirements
project_sources = []
gnome = import('gnome')
thread_dep = dependency('threads')
cc = meson.get_compiler('c')
i18n = import('i18n')
configuration_inc = include_directories('.')
# External programs
gdk_pixbuf_csource = find_program('gdk-pixbuf-csource', required : true)
glib_genmarshal = find_program('glib-genmarshal', required : true)
gnome_doc_tool = find_program('yelp-build', required : false)
if gnome_doc_tool.found()
summary({'help' : ['Help files created:', true]}, section : 'Documentation', bool_yn : true)
else
summary({'help' : ['yelp-build not found - Help files created:', false]}, section : 'Documentation', bool_yn : true)
endif
debug = get_option('debug')
# Note that main.c sets prefix to the directory above where the executable is run from.
# This is to allow AppImages to be used
# These gq_* variables are paths relative to /prefix/,
# and are also used in defines in the source as GQ_*
if get_option('gq_appdir') == ''
gq_appdir = join_paths(get_option('datadir'), 'geeqie')
else
gq_appdir = get_option('gq_appdir')
endif
# This is not the same as Meson bindir
if get_option('gq_bindir') == ''
gq_bindir = 'lib/geeqie'
else
gq_bindir = get_option('gq_bindir')
endif
if get_option('gq_helpdir') == ''
gq_helpdir = join_paths(get_option('datadir'), 'doc/geeqie')
else
gq_helpdir = get_option('gq_helpdir')
endif
if get_option('gq_htmldir') == ''
gq_htmldir = join_paths(get_option('datadir'), 'doc/geeqie/html')
else
gq_htmldir = get_option('gq_htmldir')
endif
if get_option('gq_localedir') == ''
gq_localedir = join_paths(get_option('datadir'), 'locale')
else
gq_localedir = get_option('gq_localedir')
endif
# Set up the absolute directory paths used
prefix = get_option('prefix')
datadir = join_paths(prefix, get_option('datadir'))
# Installation paths are absolute
appdir = join_paths(prefix, gq_appdir)
appdatadir = join_paths(datadir, 'metainfo')
desktopdir = join_paths(datadir, meson.project_name(), 'applications')
helpdir = join_paths(prefix, gq_helpdir)
htmldir = join_paths(prefix, gq_htmldir)
icondir = join_paths(datadir, 'pixmaps')
mandir1 = join_paths(datadir, 'man', 'man1')
podir = join_paths(meson.source_root(), 'po')
summary({'gq_appdir': gq_appdir,
'gq_bindir': gq_helpdir,
'gq_helpdir': gq_helpdir,
'gq_htmldir': gq_htmldir,
'gq_localedir': gq_localedir,
}, section: 'Directories')
# Create the define constants used in the sources. Set via config.h.in
conf_data = configuration_data()
conf_data.set_quoted('VERSION', run_command('./version.sh', check : true).stdout())
conf_data.set('DEBUG', debug)
gtk_dep = dependency('gtk+-3.0', version : '>=3.22', required: true)
glib_dep = dependency('glib-2.0', version : '>=2.52', required: true)
libarchive_dep = []
req_version = '>=3.4.0'
option = get_option('archive')
if not option.disabled()
libarchive_dep = dependency('libarchive', version : req_version, required : get_option('archive'))
if libarchive_dep.found()
conf_data.set('HAVE_ARCHIVE', 1)
summary({'archive' : ['archive files e.g. .zip supported:', true]}, section : 'Configuration', bool_yn : true)
else
summary({'archive' : ['libarchive ' + req_version + ' not found - archive files e.g. .zip supported::', false]}, section : 'Configuration', bool_yn : true)
endif
else
summary({'archive' : ['disabled - archive files e.g. .zip supported:', false]}, section : 'Configuration', bool_yn : true)
endif
lcms_dep = []
req_version = '>=2.0'
option = get_option('cms')
if not option.disabled()
lcms_dep = dependency('lcms2', version : req_version, required : get_option('cms'))
if lcms_dep.found()
conf_data.set('HAVE_LCMS', 1)
conf_data.set('HAVE_LCMS2', 1)
summary({'cms' : ['color management supported:', true]}, section : 'Configuration', bool_yn : true)
else
summary({'cms' : ['lcms2' + req_version + ' not found - color management supported:', false]}, section : 'Configuration', bool_yn : true)
endif
else
summary({'cms' : ['disabled - color management supported:', false]}, section : 'Configuration', bool_yn : true)
endif
ddjvuapi_dep = []
req_version = '>=2.5.27'
option = get_option('djvu')
if not option.disabled()
ddjvuapi_dep = dependency('ddjvuapi', version : req_version, required : get_option('djvu'))
if ddjvuapi_dep.found()
conf_data.set('HAVE_DJVU', 1)
summary({'djvu' : ['djvu files supported:', true]}, section : 'Configuration', bool_yn : true)
else
summary({'djvu' : ['ddjvuapi ' + req_version + ' not found - djvu files supported:', false]}, section : 'Configuration', bool_yn : true)
endif
else
summary({'djvu' : ['disabled - djvu files supported:', false]}, section : 'Configuration', bool_yn : true)
endif
exiv2_dep = []
req_version = '>=0.11'
option = get_option('exiv2')
if not option.disabled()
exiv2_dep = dependency('exiv2', version : req_version, required : get_option('exiv2'))
if exiv2_dep.found()
conf_data.set('HAVE_EXIV2', 1)
summary({'exiv2' : ['image metadata processed by exiv2:', true]}, section : 'Configuration', bool_yn : true)
else
summary({'exiv2' : ['exiv2 ' + req_version + ' not found - image data not processed by exiv2:', false]}, section : 'Configuration', bool_yn : true)
endif
else
summary({'exiv2' : ['disabled - image data processed by exiv2:', false]}, section : 'Configuration', bool_yn : true)
endif
libffmpegthumbnailer_dep = []
req_version = '>=2.1.0'
option = get_option('videothumbnailer')
if not option.disabled()
libffmpegthumbnailer_dep = dependency('libffmpegthumbnailer',
version : req_version,
required : get_option('videothumbnailer'))
if libffmpegthumbnailer_dep.found()
conf_data.set('HAVE_FFMPEGTHUMBNAILER', 1)
summary({'videothumbnailer' : ['thumbnails of video files supported:', true]}, section : 'Configuration', bool_yn : true)
result = cc.has_member('struct video_thumbnailer_struct', 'prefer_embedded_metadata', prefix : '#include <libffmpegthumbnailer/videothumbnailerc.h>')
if result
conf_data.set('HAVE_FFMPEGTHUMBNAILER_METADATA', 1)
endif
summary({'fmpegthumbnailer_metadata' : ['fmpegthumbnailer_metadata found:', result]}, section : 'Thumbnailer', bool_yn : true)
result = cc.has_member('struct image_data_struct', 'image_data_width', prefix : '#include <libffmpegthumbnailer/videothumbnailerc.h>' )
if result
conf_data.set('HAVE_FFMPEGTHUMBNAILER_RGB', 1)
endif
summary({'fmpegthumbnailer_rgb' : ['fmpegthumbnailer_rgb found:', result]}, section : 'Thumbnailer', bool_yn : true)
result = cc.has_function('video_thumbnailer_set_size', dependencies : libffmpegthumbnailer_dep)
if result
conf_data.set('HAVE_FFMPEGTHUMBNAILER_WH', 1)
endif
summary({'fmpegthumbnailer_set_size' : ['fmpegthumbnailer_set_size found:', result]}, section : 'Thumbnailer', bool_yn : true)
else
summary({'videothumbnailer' : ['libvideothumbnailer ' + req_version + ' not found - thumbnails of video files supported', false]}, section : 'Configuration', bool_yn : true)
endif
else
summary({'videothumbnailer' : ['disabled -thumbnails of video files supported', false]}, section : 'Configuration', bool_yn : true)
endif
champlain_dep = []
champlain_gtk_dep = []
clutter_dep = []
clutter_gtk_dep = []
req_version_champlain = '>=0.12'
req_version_champlain_gtk = '>=0.12'
req_version_clutter = '>=1.0'
req_version_clutter_gtk = '>=1.0'
option = get_option('gps-map')
if not option.disabled()
champlain_dep = dependency('champlain-0.12', version : req_version_champlain, required : get_option('gps-map'))
champlain_gtk_dep = dependency('champlain-gtk-0.12', version : req_version_champlain_gtk, required : get_option('gps-map'))
if champlain_dep.found() and champlain_gtk_dep.found()
clutter_dep = dependency('clutter-1.0', version : req_version_clutter, required : get_option('gps-map'))
clutter_gtk_dep = dependency('clutter-gtk-1.0', version : req_version_clutter_gtk, required : get_option('gps-map'))
if clutter_dep.found() and clutter_gtk_dep.found()
conf_data.set('HAVE_CLUTTER', 1)
conf_data.set('HAVE_LIBCHAMPLAIN', 1)
conf_data.set('HAVE_LIBCHAMPLAIN_GTK', 1)
summary({'gps-map' : ['GPS map displayed', true]}, section : 'Configuration', bool_yn : true)
else
if not clutter_dep.found()
summary({'gps-map-clutter' : ['clutter-1.0 ' + req_version_clutter + ' not found - GPS map displayed:', false]}, section : 'Configuration', bool_yn : true)
endif
if not clutter_gtk_dep.found()
summary({'gps-map-clutter-gtk' : ['clutter-gtk-1.0 ' + req_version_clutter_gtk + ' not found - GPS map displayed:', false]}, section : 'Configuration', bool_yn : true)
endif
endif
else
if not champlain_dep.found()
summary({'gps-map-champlain' : ['champlain-0.12 ' + req_version_champlain + ' not found - GPS map displayed:', false]}, section : 'Configuration', bool_yn : true)
endif
if not champlain_gtk_dep.found()
summary({'gps-map-champlain-gtk' : ['champlain-gtk-0.12 ' + req_version_champlain_gtk + ' not found - GPS map displayed:', false]}, section : 'Configuration', bool_yn : true)
endif
endif
else
summary({'gps-map' : ['disabled - GPS map displayed:', false]}, section : 'Configuration', bool_yn : true)
endif
libheif_dep = []
req_version = '>=1.3.2'
option = get_option('heif')
if not option.disabled()
libheif_dep = dependency('libheif', version : req_version, required : get_option('heif'))
if libheif_dep.found()
conf_data.set('HAVE_HEIF', 1)
summary({'heif' : ['heif files supported:', true]}, section : 'Configuration', bool_yn : true)
else
summary({'heif' : ['libheif ' + req_version + ' not found - heif files supported:', false]}, section : 'Configuration', bool_yn : true)
endif
else
summary({'heif' : ['disabled - heif files supported:', false]}, section : 'Configuration', bool_yn : true)
endif
libopenjp2_dep = []
req_version = '>=2.3.0'
option = get_option('j2k')
if not option.disabled()
libopenjp2_dep = dependency('libopenjp2', version : req_version, required : get_option('j2k'))
if libopenjp2_dep.found()
conf_data.set('HAVE_J2K', 1)
summary({'j2k' : ['j2k files supported:', true]}, section : 'Configuration', bool_yn : true)
else
summary({'j2k' : ['libopenjp2 ' + req_version + ' not found - j2k files supported:', false]}, section : 'Configuration', bool_yn : true)
endif
else
summary({'j2k' : ['disabled - j2k files supported:', false]}, section : 'Configuration', bool_yn : true)
endif
libjpeg_dep = []
option = get_option('jpeg')
if not option.disabled()
libjpeg_dep = dependency('libjpeg', required : get_option('jpeg'))
if libjpeg_dep.found()
if cc.has_function('jpeg_destroy_decompress', dependencies : libjpeg_dep)
conf_data.set('HAVE_JPEG', 1)
summary({'jpeg' : ['jpeg files supported:', true]}, section : 'Configuration', bool_yn : true)
else
summary({'jpeg' : ['jpeg_destroy_decompress not found - jpeg files supported:', false]}, section : 'Configuration', bool_yn : true)
endif
else
summary({'jpeg' : ['libjpeg: not found', false]}, section : 'Configuration', bool_yn : true)
endif
else
summary({'jpeg' : ['disabled - jpeg files supported:', false]}, section : 'Configuration', bool_yn : true)
endif
libjxl_dep = []
req_version = '>=0.3.7'
option = get_option('jpegxl')
if not option.disabled()
libjxl_dep = dependency('libjxl', version : req_version, required : get_option('jpegxl'))
if libjxl_dep.found()
conf_data.set('HAVE_JPEGXL', 1)
summary({'jpegxl' : ['jpegxl files supported:', true]}, section : 'Configuration', bool_yn : true)
else
summary({'jpegxl' : ['libjxl ' + req_version + ' not found - jpegxl files supported:', false]}, section : 'Configuration', bool_yn : true)
endif
else
summary({'jpegxl' : ['disabled - jpegxl files supported:', false]}, section : 'Configuration', bool_yn : true)
endif
libraw_dep = []
req_version = '>=0.20'
option = get_option('libraw')
if not option.disabled()
libraw_dep = dependency('libraw', version : req_version, required : get_option('libraw'))
if libraw_dep.found()
conf_data.set('HAVE_RAW', 1)
summary({'libraw' : ['.cr3 files supported:', true]}, section : 'Configuration', bool_yn : true)
else
summary({'libraw' : ['libraw ' + req_version + ' not found - .cr3 files supported:', false]}, section : 'Configuration', bool_yn : true)
endif
else
summary({'libraw' : ['disabled - .cr3 files supported:', false]}, section : 'Configuration', bool_yn : true)
endif
lua_dep = []
req_version = '>=5.1'
option = get_option('lua')
if not option.disabled()
lua_dep = dependency('lua5.1', version : req_version, required : get_option('lua'))
if lua_dep.found()
conf_data.set('HAVE_LUA', 1)
summary({'lua' : ['lua supported:', true]}, section : 'Configuration', bool_yn : true)
else
summary({'lua' : ['lua5.1 ' + req_version + ' not found - lua supported:', false]}, section : 'Configuration', bool_yn : true)
endif
else
summary({'lua' : ['disabled - lua supported:', false]}, section : 'Configuration', bool_yn : true)
endif
poppler_glib_dep = []
req_version = '>=0.62'
option = get_option('pdf')
if not option.disabled()
poppler_glib_dep = dependency('poppler-glib', version : req_version, required : get_option('pdf'))
if poppler_glib_dep.found()
conf_data.set('HAVE_PDF', 1)
summary({'pdf' : ['pdf files supported:', true]}, section : 'Configuration', bool_yn : true)
else
summary({'pdf' : ['poppler-glib ' + req_version + ' not found - pdf files supported:', false]}, section : 'Configuration', bool_yn : true)
endif
else
summary({'pdf' : ['disabled - pdf files supported:', false]}, section : 'Configuration', bool_yn : true)
endif
gspell_dep = []
req_version = '>=1.6'
option = get_option('spell')
if not option.disabled()
gspell_dep = dependency('gspell-1', version : req_version, required: get_option('spell'))
if gspell_dep.found()
conf_data.set('HAVE_SPELL', 1)
summary({'spell' : ['spelling checks enabled', true]}, section : 'Configuration', bool_yn : true)
else
summary({'spell' : ['gspell-1 ' + req_version + ' not found - spelling checks not enabled', false]}, section : 'Configuration', bool_yn : true)
endif
else
summary({'spell' : ['disabled - spelling checks not enabled', false]}, section : 'Configuration', bool_yn : true)
endif
tiff_dep = []
option = get_option('tiff')
if not option.disabled()
tiff_dep = cc.find_library('libtiff', required: get_option('tiff'))
if tiff_dep.found()
if cc.has_function('TIFFClientOpen', dependencies : tiff_dep)
conf_data.set('HAVE_TIFF', 1)
summary({'tiff' : ['tiff files supported:', true]}, section : 'Configuration', bool_yn : true)
else
summary({'tiff' : ['TIFFClientOpen not found - tiff files supported:', false]}, section : 'Configuration', bool_yn : true)
endif
else
summary({'tiff' : ['libtiff not found - tiff files supported:', false]}, section : 'Configuration', bool_yn : true)
endif
else
summary({'tiff' : ['disabled - tiff files supported:', false]}, section : 'Configuration', bool_yn : true)
endif
libwebp_dep = []
req_version = '>=0.6.1'
option = get_option('webp')
if not option.disabled()
libwebp_dep = dependency('libwebp', version : req_version, required : get_option('webp'))
if libwebp_dep.found()
conf_data.set('HAVE_WEBP', 1)
summary({'webp' : ['webp files supported:', true]}, section : 'Configuration', bool_yn : true)
else
summary({'webp' : ['libwebp ' + req_version + ' not found - webp files supported:', false]}, section : 'Configuration', bool_yn : true)
endif
else
summary({'webp' : ['disabled - webp files supported:', false]}, section : 'Configuration', bool_yn : true)
endif
# Check for nl_langinfo and _NL_TIME_FIRST_WEEKDAY
code = '''#include <langinfo.h>
#include<stdio.h>
int main (int argc, char ** argv) {
char *c;
c = nl_langinfo(_NL_TIME_FIRST_WEEKDAY);
return 0;
}'''
if cc.links(code, name : 'nl_langinfo and _NL_TIME_FIRST_WEEKDAY')
conf_data.set('HAVE__NL_TIME_FIRST_WEEKDAY', 1)
summary({'nl_langinfo' : ['first weekday depends on locale:', true]}, section : 'Documentation', bool_yn : true)
else
summary({'nl_langinfo' : ['nl_langinfo not found - first weekday depends on locale:', false, 'first weekday defaults to Monday']}, section : 'Documentation', bool_yn : true)
endif
conf_data.set_quoted('GETTEXT_PACKAGE', meson.project_name())
conf_data.set_quoted('GQ_APPDIR', gq_appdir)
conf_data.set_quoted('GQ_BINDIR', gq_bindir)
conf_data.set_quoted('GQ_HELPDIR', gq_helpdir)
conf_data.set_quoted('GQ_HTMLDIR', gq_htmldir)
conf_data.set_quoted('GQ_LOCALEDIR', gq_localedir)
conf_data.set_quoted('PACKAGE', meson.project_name())
conf_data.set_quoted('PACKAGE_NAME', meson.project_name())
conf_data.set_quoted('PACKAGE_STRING', meson.project_version())
conf_data.set_quoted('PACKAGE_TARNAME', meson.project_name())
conf_data.set_quoted('PACKAGE_VERSION', meson.project_version())
conf_data.set_quoted('VERSION', meson.project_version())
configure_file(input : 'config.h.in',
output : 'config.h',
encoding : 'UTF-8',
configuration : conf_data)
# Process subdirs before the sources
subdir('po')
subdir('plugins')
# Generate the executable
subdir('src')
# Generate the help files
subdir('doc')
# Install other project files
run_command(find_program('gen_changelog.sh'), meson.source_root(), meson.build_root(), check : true)
pandoc = find_program('pandoc', required : false)
if pandoc.found()
run_command(find_program('gen_readme.sh'), meson.source_root(), meson.build_root(), check : false)
install_data('README.md', 'COPYING', 'TODO', 'AUTHORS',
join_paths(meson.build_root(), 'ChangeLog'),
join_paths(meson.build_root(), 'README.html'),
join_paths(meson.build_root(), 'ChangeLog.html'),
install_dir : helpdir)
summary({'README' : ['README.html created:', true]}, section : 'Documentation', bool_yn : true)
else
install_data('README.md', 'COPYING', 'TODO', 'AUTHORS',
join_paths(meson.build_root(), 'ChangeLog'),
join_paths(meson.build_root(), 'ChangeLog.html'),
install_dir : helpdir)
summary({'README' : ['pandoc not found - README.html created:', false]}, section : 'Documentation', bool_yn : true)
endif
evince = find_program('evince', required : false)
if evince.found()
summary({'print preview' : ['print preview supported:', true]}, section : 'Documentation', bool_yn : true)
else
summary({'print preview' : ['evince not found - print preview supported:', false]}, section : 'Documentation', bool_yn : true)
endif
install_data('geeqie.png', install_dir : icondir)
install_data('geeqie.1', install_dir : mandir1)
i18n.merge_file(
input : 'geeqie.desktop.in',
output : 'geeqie.desktop',
type : 'desktop',
po_dir : podir,
install : true,
install_dir : join_paths(datadir, 'applications'))
i18n.merge_file(
input : 'org.geeqie.Geeqie.appdata.xml.in',
output : 'org.geeqie.Geeqie.appdata.xml',
type : 'xml',
po_dir : podir,
install : true,
install_dir : appdatadir)
configure_file(input: 'geeqie.spec.in', output: 'geeqie.spec', configuration: conf_data)