2021-12-18 06:38:30 +01:00
|
|
|
# vim: noet ts=4 sts=4 sw=4:
|
2022-01-05 04:42:01 +01:00
|
|
|
project('fiv', 'c',
|
2021-11-20 14:28:13 +01:00
|
|
|
default_options : ['c_std=gnu99', 'warning_level=2'],
|
2023-06-10 11:32:11 +02:00
|
|
|
version : '0.1.0',
|
|
|
|
meson_version : '>=0.57')
|
2022-01-21 09:04:01 +01:00
|
|
|
|
|
|
|
cc = meson.get_compiler('c')
|
2021-11-20 14:28:13 +01:00
|
|
|
add_project_arguments(
|
2022-01-21 09:04:01 +01:00
|
|
|
cc.get_supported_arguments('-Wno-cast-function-type'), language : 'c')
|
2021-07-14 07:09:19 +02:00
|
|
|
|
2022-01-07 08:37:00 +01:00
|
|
|
# This, annoyingly, enables the leak sanitizer by default,
|
|
|
|
# which requires some tuning to not stand in the way.
|
|
|
|
# Use -Db_sanitize=address,undefined and adjust LSAN_OPTIONS yourself.
|
|
|
|
#if get_option('buildtype').startswith('debug')
|
2022-01-21 09:04:01 +01:00
|
|
|
# flags = cc.get_supported_arguments('-fsanitize=address,undefined')
|
2022-01-07 08:37:00 +01:00
|
|
|
# add_project_arguments(flags, language : ['c'])
|
|
|
|
# add_project_link_arguments(flags, language : ['c'])
|
|
|
|
#endif
|
2021-11-30 22:52:34 +01:00
|
|
|
|
2022-08-24 05:22:49 +02:00
|
|
|
win32 = host_machine.system() == 'windows'
|
|
|
|
|
2022-01-18 23:35:14 +01:00
|
|
|
# The likelihood of this being installed is nearly zero. Enable the wrap.
|
2022-01-23 04:43:46 +01:00
|
|
|
libjpegqs = dependency('libjpegqs', required : get_option('libjpegqs'),
|
|
|
|
allow_fallback : true)
|
2022-01-21 09:04:01 +01:00
|
|
|
|
2021-12-22 22:07:49 +01:00
|
|
|
lcms2 = dependency('lcms2', required : get_option('lcms2'))
|
2021-12-26 19:41:42 +01:00
|
|
|
# Note that only libraw_r is thread-safe, but we'll just run it out-of process.
|
2021-09-16 12:35:36 +02:00
|
|
|
libraw = dependency('libraw', required : get_option('libraw'))
|
2023-06-04 15:20:03 +02:00
|
|
|
# This is a direct runtime dependency, but its usage may be disabled for images.
|
2021-11-09 19:42:43 +01:00
|
|
|
librsvg = dependency('librsvg-2.0', required : get_option('librsvg'))
|
2021-11-17 13:45:42 +01:00
|
|
|
xcursor = dependency('xcursor', required : get_option('xcursor'))
|
2021-12-11 14:40:10 +01:00
|
|
|
libheif = dependency('libheif', required : get_option('libheif'))
|
2021-11-26 21:31:13 +01:00
|
|
|
libtiff = dependency('libtiff-4', required : get_option('libtiff'))
|
2023-06-04 15:20:03 +02:00
|
|
|
# This is a direct dependency of GTK+, but its usage may be disabled for images.
|
2021-11-10 21:33:30 +01:00
|
|
|
gdkpixbuf = dependency('gdk-pixbuf-2.0', required : get_option('gdk-pixbuf'))
|
2021-09-16 12:35:36 +02:00
|
|
|
dependencies = [
|
|
|
|
dependency('gtk+-3.0'),
|
2021-12-22 22:07:49 +01:00
|
|
|
dependency('pixman-1'),
|
|
|
|
|
2023-06-27 22:48:03 +02:00
|
|
|
dependency('libjpeg'),
|
2021-09-16 12:35:36 +02:00
|
|
|
dependency('libturbojpeg'),
|
2021-12-26 19:41:42 +01:00
|
|
|
dependency('libwebp'),
|
|
|
|
dependency('libwebpdemux'),
|
2022-01-06 08:15:26 +01:00
|
|
|
dependency('libwebpdecoder', required : false),
|
2021-12-26 19:41:42 +01:00
|
|
|
dependency('libwebpmux'),
|
2023-03-15 03:31:30 +01:00
|
|
|
# Wuffs is included as a submodule.
|
2021-12-22 22:07:49 +01:00
|
|
|
|
|
|
|
lcms2,
|
2022-01-18 23:35:14 +01:00
|
|
|
libjpegqs,
|
2021-09-16 12:35:36 +02:00
|
|
|
libraw,
|
2021-11-09 19:42:43 +01:00
|
|
|
librsvg,
|
2021-11-17 13:45:42 +01:00
|
|
|
xcursor,
|
2021-12-11 14:40:10 +01:00
|
|
|
libheif,
|
2021-11-26 21:31:13 +01:00
|
|
|
libtiff,
|
2022-01-21 09:04:01 +01:00
|
|
|
|
|
|
|
cc.find_library('m', required : false),
|
2021-09-16 12:35:36 +02:00
|
|
|
]
|
|
|
|
|
2023-06-04 15:20:03 +02:00
|
|
|
# As of writing, no pkg-config file is produced, and the plugin is not installed
|
|
|
|
# by default. The library can be built statically, but it's a bit of a hassle.
|
|
|
|
have_lcms2_fast_float = false
|
|
|
|
if not get_option('lcms2fastfloat').disabled()
|
|
|
|
lcms2ff = dependency('lcms2_fast_float', required : false)
|
|
|
|
if not lcms2ff.found()
|
|
|
|
lcms2ff = cc.find_library(
|
|
|
|
'lcms2_fast_float', required : get_option('lcms2fastfloat'))
|
|
|
|
if lcms2ff.found() and not cc.has_header('lcms2_fast_float.h')
|
|
|
|
error('lcms2_fast_float.h not found')
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
if lcms2ff.found()
|
|
|
|
dependencies += lcms2ff
|
|
|
|
have_lcms2_fast_float = true
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2022-01-23 04:43:46 +01:00
|
|
|
# As of writing, the API is unstable, and no pkg-config file is produced.
|
|
|
|
# Trying to wrap Cargo in Meson is a recipe for pain, so no version pinning.
|
|
|
|
have_resvg = false
|
|
|
|
if not get_option('resvg').disabled()
|
|
|
|
resvg = dependency('resvg', required : false)
|
|
|
|
if not resvg.found()
|
2023-03-03 12:13:29 +01:00
|
|
|
resvg = cc.find_library('resvg', required : get_option('resvg'))
|
2022-01-23 04:43:46 +01:00
|
|
|
if resvg.found() and not cc.has_header('resvg.h')
|
|
|
|
error('resvg.h not found')
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
if resvg.found()
|
|
|
|
dependencies += resvg
|
|
|
|
have_resvg = true
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2022-01-24 08:41:05 +01:00
|
|
|
# XXX: https://github.com/mesonbuild/meson/issues/825
|
|
|
|
docdir = get_option('datadir') / 'doc' / meson.project_name()
|
2022-07-25 14:25:14 +02:00
|
|
|
application_ns = 'name.janouch.'
|
2023-06-26 15:43:45 +02:00
|
|
|
application_url = 'https://janouch.name/p/' + meson.project_name()
|
2022-01-24 08:41:05 +01:00
|
|
|
|
2021-07-14 07:09:19 +02:00
|
|
|
conf = configuration_data()
|
|
|
|
conf.set_quoted('PROJECT_NAME', meson.project_name())
|
2022-08-12 21:16:37 +02:00
|
|
|
conf.set_quoted('PROJECT_VERSION', '@VCS_TAG@')
|
2022-07-25 14:25:14 +02:00
|
|
|
conf.set_quoted('PROJECT_NS', application_ns)
|
2023-06-26 15:43:45 +02:00
|
|
|
conf.set_quoted('PROJECT_URL', application_url)
|
2022-01-24 08:41:05 +01:00
|
|
|
conf.set_quoted('PROJECT_DOCDIR', get_option('prefix') / docdir)
|
2022-08-24 05:22:49 +02:00
|
|
|
if win32
|
2022-08-11 11:36:31 +02:00
|
|
|
conf.set_quoted('PROJECT_DOCDIR', docdir)
|
|
|
|
endif
|
|
|
|
|
2022-01-18 23:35:14 +01:00
|
|
|
conf.set('HAVE_JPEG_QS', libjpegqs.found())
|
2021-12-22 22:07:49 +01:00
|
|
|
conf.set('HAVE_LCMS2', lcms2.found())
|
2023-06-04 15:20:03 +02:00
|
|
|
conf.set('HAVE_LCMS2_FAST_FLOAT', have_lcms2_fast_float)
|
2021-09-16 12:35:36 +02:00
|
|
|
conf.set('HAVE_LIBRAW', libraw.found())
|
2022-01-23 04:43:46 +01:00
|
|
|
conf.set('HAVE_RESVG', have_resvg)
|
2021-11-09 19:42:43 +01:00
|
|
|
conf.set('HAVE_LIBRSVG', librsvg.found())
|
2021-11-17 13:45:42 +01:00
|
|
|
conf.set('HAVE_XCURSOR', xcursor.found())
|
2021-12-11 14:40:10 +01:00
|
|
|
conf.set('HAVE_LIBHEIF', libheif.found())
|
2021-11-26 21:31:13 +01:00
|
|
|
conf.set('HAVE_LIBTIFF', libtiff.found())
|
2021-11-10 21:33:30 +01:00
|
|
|
conf.set('HAVE_GDKPIXBUF', gdkpixbuf.found())
|
2022-08-11 11:36:31 +02:00
|
|
|
|
2022-08-12 21:16:37 +02:00
|
|
|
config = vcs_tag(
|
|
|
|
command : ['git', 'describe', '--always', '--dirty=+'],
|
|
|
|
input : configure_file(output : 'config.h.in', configuration : conf),
|
2021-07-14 07:09:19 +02:00
|
|
|
output : 'config.h',
|
|
|
|
)
|
|
|
|
|
2022-08-10 18:11:05 +02:00
|
|
|
rc = []
|
2022-08-24 05:22:49 +02:00
|
|
|
if win32
|
2022-08-10 18:11:05 +02:00
|
|
|
windows = import('windows')
|
|
|
|
rsvg_convert = find_program('rsvg-convert')
|
|
|
|
icotool = find_program('icotool')
|
|
|
|
|
|
|
|
# Meson is brain-dead and retarded, so these PNGs cannot be installed,
|
|
|
|
# only because they must all have the same name when installed.
|
|
|
|
# The largest size is mainly for an appropriately sized Windows icon.
|
|
|
|
icon_png_list = []
|
|
|
|
foreach size : ['16', '32', '48', '256']
|
|
|
|
icon_dimensions = size + 'x' + size
|
|
|
|
icon_png_list += custom_target(icon_dimensions + ' icon',
|
|
|
|
input : 'fiv.svg',
|
|
|
|
output : 'fiv.' + icon_dimensions + '.png',
|
|
|
|
command : [rsvg_convert, '--output', '@OUTPUT@',
|
|
|
|
'--width', size, '--height', size, '@INPUT@'])
|
|
|
|
endforeach
|
|
|
|
|
2023-06-21 18:38:01 +02:00
|
|
|
icon_ico = custom_target('fiv.ico',
|
|
|
|
output : 'fiv.ico', input : icon_png_list,
|
2022-08-10 18:11:05 +02:00
|
|
|
command : [icotool, '-c', '-o', '@OUTPUT@', '@INPUT@'])
|
|
|
|
rc += windows.compile_resources('fiv.rc', depends : icon_ico)
|
|
|
|
endif
|
|
|
|
|
2021-11-20 20:55:24 +01:00
|
|
|
gnome = import('gnome')
|
2022-08-10 18:11:05 +02:00
|
|
|
gresources = gnome.compile_resources('resources',
|
2021-11-20 20:55:24 +01:00
|
|
|
'resources/resources.gresource.xml',
|
|
|
|
source_dir : 'resources',
|
|
|
|
c_name : 'resources',
|
|
|
|
)
|
|
|
|
|
2021-12-16 02:11:07 +01:00
|
|
|
tiff_tables = custom_target('tiff-tables.h',
|
|
|
|
output : 'tiff-tables.h',
|
|
|
|
input : 'tiff-tables.db',
|
2023-06-10 11:52:11 +02:00
|
|
|
# Meson 0.56 chokes on files() as well as on a relative path.
|
|
|
|
command : [meson.current_source_dir() / 'tiff-tables.awk', '@INPUT@'],
|
2021-12-16 02:11:07 +01:00
|
|
|
capture : true,
|
|
|
|
)
|
|
|
|
|
2022-07-25 18:47:10 +02:00
|
|
|
desktops = ['fiv.desktop', 'fiv-browse.desktop']
|
2023-06-23 16:45:26 +02:00
|
|
|
iolib = static_library('fiv-io', 'fiv-io.c', 'xdg.c', tiff_tables,
|
|
|
|
dependencies : dependencies).extract_all_objects(recursive : true)
|
|
|
|
exe = executable('fiv', 'fiv.c', 'fiv-view.c', 'fiv-context-menu.c',
|
Support opening collections of files
Implement a process-local VFS to enable grouping together arbitrary
URIs passed via program arguments, DnD, or the file open dialog.
This VFS contains FivCollectionFile objects, which act as "simple"
proxies over arbitrary GFiles. Their true URIs may be retrieved
through the "standard::target-uri" attribute, in a similar way to
GVfs's "recent" and "trash" backends.
(The main reason we proxy rather than just hackishly return foreign
GFiles from the VFS is that loading them would switch the current
directory, and break iteration as a result.
We could also keep the collection outside of GVfs, but that would
result in considerable special-casing, and the author wouldn't gain
intimate knowledge of GIO.)
There is no perceived need to keep old collections when opening
new ones, so we simply change and reload the contents when needed.
Similarly, there is no intention to make the VFS writeable.
The process-locality of this and other URI schemes has proven to be
rather annoying when passing files to other applications,
however most of the resulting complexity appears to be essential
rather than accidental.
Note that the GTK+ file chooser widget is retarded, and doesn't
recognize URIs that lack the authority part in the location bar.
2022-07-28 00:37:36 +02:00
|
|
|
'fiv-browser.c', 'fiv-sidebar.c', 'fiv-thumbnail.c', 'fiv-collection.c',
|
2023-06-23 16:45:26 +02:00
|
|
|
'fiv-io-model.c', gresources, rc, config,
|
|
|
|
objects : iolib,
|
2022-08-10 18:11:05 +02:00
|
|
|
dependencies : dependencies,
|
2023-06-23 16:45:26 +02:00
|
|
|
install : true,
|
2022-08-10 18:11:05 +02:00
|
|
|
win_subsystem : 'windows',
|
|
|
|
)
|
2021-09-20 01:43:25 +02:00
|
|
|
|
2022-07-25 14:25:14 +02:00
|
|
|
desktops += 'fiv-jpegcrop.desktop'
|
2022-08-12 21:16:37 +02:00
|
|
|
jpegcrop = executable('fiv-jpegcrop', 'fiv-jpegcrop.c', rc, config,
|
2022-02-18 18:10:19 +01:00
|
|
|
install : true,
|
|
|
|
dependencies : [
|
|
|
|
dependency('gtk+-3.0'),
|
|
|
|
dependency('libturbojpeg'),
|
2022-08-10 18:11:05 +02:00
|
|
|
],
|
|
|
|
win_subsystem : 'windows',
|
|
|
|
)
|
2022-02-18 18:10:19 +01:00
|
|
|
|
2022-06-10 01:16:14 +02:00
|
|
|
if get_option('tools').enabled()
|
|
|
|
# libjq 1.6 lacks a pkg-config file, and there is no release in sight.
|
|
|
|
# libjq 1.6 is required.
|
2023-05-25 03:55:25 +02:00
|
|
|
tools_dependencies = [
|
|
|
|
cc.find_library('jq'), dependency('libpng'), dependency('libraw')]
|
2022-06-10 01:16:14 +02:00
|
|
|
tools_c_args = cc.get_supported_arguments(
|
|
|
|
'-Wno-unused-function', '-Wno-unused-parameter')
|
2023-06-05 17:52:58 +02:00
|
|
|
foreach tool : ['info', 'pnginfo', 'rawinfo']
|
2021-12-16 02:11:07 +01:00
|
|
|
executable(tool, 'tools/' + tool + '.c', tiff_tables,
|
2022-06-10 01:16:14 +02:00
|
|
|
dependencies : tools_dependencies,
|
|
|
|
c_args: tools_c_args)
|
|
|
|
endforeach
|
2023-06-06 17:54:27 +02:00
|
|
|
|
|
|
|
if gdkpixbuf.found()
|
2023-06-23 16:45:26 +02:00
|
|
|
executable('benchmark-io', 'tools/benchmark-io.c',
|
|
|
|
objects : iolib,
|
|
|
|
dependencies : [dependencies, gdkpixbuf])
|
2023-06-06 17:54:27 +02:00
|
|
|
endif
|
2022-06-10 01:16:14 +02:00
|
|
|
endif
|
|
|
|
|
2023-06-24 15:26:17 +02:00
|
|
|
# Copying the files to the build directory makes GSettings find them in devenv.
|
2022-07-25 14:25:14 +02:00
|
|
|
gsettings_schemas = ['fiv.gschema.xml']
|
2022-08-12 14:22:30 +02:00
|
|
|
foreach schema : gsettings_schemas
|
2023-06-24 15:26:17 +02:00
|
|
|
configure_file(
|
|
|
|
input : schema,
|
|
|
|
output : application_ns + schema,
|
|
|
|
copy : true,
|
|
|
|
install: true,
|
2022-08-12 14:22:30 +02:00
|
|
|
install_dir : get_option('datadir') / 'glib-2.0' / 'schemas')
|
|
|
|
endforeach
|
2022-07-25 14:25:14 +02:00
|
|
|
|
|
|
|
# For the purposes of development: make the program find its GSettings schemas.
|
|
|
|
gnome.compile_schemas(depend_files : files(gsettings_schemas))
|
2023-06-29 20:33:27 +02:00
|
|
|
gnome.post_install(glib_compile_schemas : true, gtk_update_icon_cache : true)
|
2022-07-25 14:25:14 +02:00
|
|
|
|
2023-06-21 18:38:01 +02:00
|
|
|
# Meson is broken on Windows and removes the backslashes, so this ends up empty.
|
|
|
|
symbolics = run_command(find_program('sed', required : false, disabler : true),
|
|
|
|
'-n', 's@.*>\\([^<>]*[.]svg\\)<.*@resources/\\1@p',
|
2022-08-12 14:22:30 +02:00
|
|
|
configure_file(
|
|
|
|
input : 'resources/resources.gresource.xml',
|
|
|
|
output : 'resources.gresource.xml.stamp',
|
|
|
|
copy : true,
|
2023-06-21 18:38:01 +02:00
|
|
|
), capture : true, check : true).stdout().strip()
|
|
|
|
|
|
|
|
# Validate various files, if there are tools around to do it.
|
|
|
|
xmls = ['fiv.svg', 'fiv.manifest', 'resources/resources.gresource.xml'] + \
|
|
|
|
gsettings_schemas
|
|
|
|
if symbolics != ''
|
|
|
|
xmls += symbolics.split('\n')
|
|
|
|
endif
|
2022-08-12 14:22:30 +02:00
|
|
|
|
|
|
|
xmlwf = find_program('xmlwf', required : false, disabler : true)
|
|
|
|
xmllint = find_program('xmllint', required : false, disabler : true)
|
|
|
|
foreach xml : xmls
|
|
|
|
test('xmlwf ' + xml, xmlwf, args : files(xml))
|
|
|
|
test('xmllint ' + xml, xmllint, args : ['--noout', files(xml)])
|
|
|
|
endforeach
|
|
|
|
|
|
|
|
dfv = find_program('desktop-file-validate', required : false, disabler : true)
|
|
|
|
foreach desktop : desktops
|
|
|
|
test(desktop, dfv, args : files(desktop))
|
|
|
|
endforeach
|
|
|
|
|
|
|
|
# Finish the installation.
|
|
|
|
install_data('fiv.svg',
|
|
|
|
install_dir : get_option('datadir') / 'icons/hicolor/scalable/apps')
|
|
|
|
install_subdir('docs',
|
|
|
|
install_dir : docdir, strip_directory : true)
|
|
|
|
|
2022-08-24 05:22:49 +02:00
|
|
|
if not win32
|
|
|
|
asciidoctor = find_program('asciidoctor', required : false)
|
|
|
|
a2x = find_program('a2x', required : false)
|
|
|
|
if not asciidoctor.found() and not a2x.found()
|
2022-10-04 18:51:25 +02:00
|
|
|
warning('Neither asciidoctor nor a2x were found, ' +
|
|
|
|
'falling back to a substandard manual page generator')
|
2022-08-24 05:22:49 +02:00
|
|
|
endif
|
|
|
|
foreach page : [meson.project_name()]
|
2022-10-04 18:51:25 +02:00
|
|
|
man_capture = false
|
2022-08-24 05:22:49 +02:00
|
|
|
if asciidoctor.found()
|
|
|
|
command = [asciidoctor, '-b', 'manpage',
|
|
|
|
'-a', 'release-version=' + meson.project_version(),
|
|
|
|
'-o', '@OUTPUT@', '@INPUT@']
|
|
|
|
elif a2x.found()
|
|
|
|
command = [a2x, '--doctype', 'manpage', '--format', 'manpage',
|
|
|
|
'-a', 'release-version=' + meson.project_version(),
|
|
|
|
'-D', '@OUTDIR@', '@INPUT@']
|
2022-10-04 18:51:25 +02:00
|
|
|
else
|
|
|
|
command = ['env', 'LC_ALL=C',
|
|
|
|
'asciidoc-release-version=' + meson.project_version(),
|
2023-06-04 12:57:24 +02:00
|
|
|
'awk', '-f', files('submodules/liberty/tools/asciiman.awk'),
|
|
|
|
'@INPUT@']
|
2022-10-04 18:51:25 +02:00
|
|
|
man_capture = true
|
2022-08-24 05:22:49 +02:00
|
|
|
endif
|
|
|
|
custom_target('manpage for ' + page,
|
|
|
|
input : 'docs' / page + '.adoc',
|
|
|
|
output : page + '.1',
|
2022-10-04 18:51:25 +02:00
|
|
|
capture : man_capture,
|
2022-08-24 05:22:49 +02:00
|
|
|
command : command,
|
|
|
|
install : true,
|
|
|
|
install_dir : get_option('mandir') / 'man1')
|
|
|
|
endforeach
|
|
|
|
|
2022-07-25 14:25:14 +02:00
|
|
|
foreach desktop : desktops
|
|
|
|
install_data(desktop,
|
|
|
|
rename : application_ns + desktop,
|
|
|
|
install_dir : get_option('datadir') / 'applications')
|
|
|
|
endforeach
|
2022-07-25 18:47:10 +02:00
|
|
|
|
2023-03-15 03:31:30 +01:00
|
|
|
# TODO(p): Consider moving this to /usr/share or /usr/lib.
|
|
|
|
install_data('fiv-reverse-search',
|
|
|
|
install_dir : get_option('bindir'))
|
|
|
|
|
|
|
|
# As usual, handling generated files in Meson is a fucking pain.
|
|
|
|
updatable_desktops = [application_ns + 'fiv.desktop']
|
|
|
|
foreach name, uri : {
|
|
|
|
'Google' : 'https://lens.google.com/uploadbyurl?url=',
|
|
|
|
'Bing' : 'https://www.bing.com/images/searchbyimage?cbir=sbi&imgurl=',
|
|
|
|
'Yandex' : 'https://yandex.com/images/search?rpt=imageview&url=',
|
|
|
|
'TinEye' : 'https://tineye.com/search?url=',
|
|
|
|
'SauceNAO' : 'https://saucenao.com/search.php?url=',
|
|
|
|
'IQDB' : 'https://iqdb.org/?url=',
|
|
|
|
}
|
|
|
|
desktop = 'fiv-reverse-search-' + name.to_lower() + '.desktop'
|
|
|
|
updatable_desktops += application_ns + desktop
|
|
|
|
|
|
|
|
test(desktop, dfv, args : configure_file(
|
|
|
|
input : 'fiv-reverse-search.desktop.in',
|
|
|
|
output : application_ns + desktop,
|
|
|
|
configuration : {'NAME' : name, 'URL' : uri},
|
|
|
|
install : true,
|
|
|
|
install_dir : get_option('datadir') / 'applications',
|
|
|
|
))
|
|
|
|
endforeach
|
|
|
|
|
2022-07-25 18:47:10 +02:00
|
|
|
# With gdk-pixbuf, fiv.desktop depends on currently installed modules;
|
|
|
|
# the package manager needs to be told to run this script as necessary.
|
|
|
|
dynamic_desktops = gdkpixbuf.found()
|
|
|
|
|
|
|
|
updater = configure_file(
|
|
|
|
input : 'fiv-update-desktop-files.in',
|
|
|
|
output : 'fiv-update-desktop-files',
|
|
|
|
configuration : {
|
2023-03-15 03:31:30 +01:00
|
|
|
'FIV' : get_option('prefix') / get_option('bindir') / exe.name(),
|
|
|
|
'DESKTOPDIR' : get_option('prefix') /
|
|
|
|
get_option('datadir') / 'applications',
|
|
|
|
'DESKTOPS' : ' \\\n\t'.join(updatable_desktops),
|
2022-07-25 18:47:10 +02:00
|
|
|
},
|
|
|
|
install : dynamic_desktops,
|
|
|
|
install_dir : get_option('bindir'))
|
|
|
|
if not meson.is_cross_build()
|
|
|
|
meson.add_install_script(updater, skip_if_destdir : dynamic_desktops)
|
|
|
|
endif
|
2023-06-27 19:04:18 +02:00
|
|
|
|
|
|
|
# Quick and dirty package generation, lacking dependencies.
|
|
|
|
packaging = configuration_data({
|
|
|
|
'name' : meson.project_name(),
|
|
|
|
'version' : meson.project_version(),
|
|
|
|
'summary' : 'Image viewer',
|
|
|
|
'author' : 'Přemysl Eric Janouch',
|
|
|
|
})
|
|
|
|
|
|
|
|
subdir('submodules/liberty/meson/packaging')
|
2022-08-10 18:11:05 +02:00
|
|
|
elif meson.is_cross_build()
|
2023-06-22 01:48:02 +02:00
|
|
|
# Note that even compiling /from within MSYS2/ can still be a cross-build.
|
2022-08-10 18:11:05 +02:00
|
|
|
msys2_root = meson.get_external_property('msys2_root')
|
2023-06-22 01:48:02 +02:00
|
|
|
meson.add_install_script('msys2-install.sh', msys2_root)
|
2022-08-10 18:11:05 +02:00
|
|
|
|
2023-06-26 15:31:28 +02:00
|
|
|
wxs = configure_file(
|
2023-06-22 23:34:51 +02:00
|
|
|
input : 'fiv.wxs.in',
|
|
|
|
output : 'fiv.wxs',
|
|
|
|
configuration : configuration_data({
|
|
|
|
'ProjectName' : meson.project_name(),
|
|
|
|
'ProjectVersion' : meson.project_version(),
|
2023-06-26 15:43:45 +02:00
|
|
|
'ProjectURL' : application_url,
|
2023-06-22 23:34:51 +02:00
|
|
|
}),
|
|
|
|
)
|
2023-06-26 15:31:28 +02:00
|
|
|
custom_target('package',
|
|
|
|
output : 'fiv.msi',
|
|
|
|
command : [meson.current_source_dir() / 'msys2-package.sh',
|
|
|
|
host_machine.cpu(), 'fiv.msi', wxs],
|
|
|
|
env : ['MESON_BUILD_ROOT=' + meson.current_build_dir(),
|
|
|
|
'MESON_SOURCE_ROOT=' + meson.current_source_dir()],
|
|
|
|
console : true,
|
|
|
|
build_always_stale : true,
|
|
|
|
build_by_default : false,
|
|
|
|
)
|
2023-06-22 23:34:51 +02:00
|
|
|
|
2023-06-22 01:48:02 +02:00
|
|
|
# This is the minimum to run targets from msys2-configure.sh builds.
|
2022-08-10 18:11:05 +02:00
|
|
|
meson.add_devenv({
|
|
|
|
'WINEPATH' : msys2_root / 'bin',
|
|
|
|
'XDG_DATA_DIRS' : msys2_root / 'share',
|
|
|
|
})
|
2022-07-25 14:25:14 +02:00
|
|
|
endif
|