mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 01:13:24 +00:00

Now the development and stable logos will be generated from gimp-data. In other changes, the gi-docgen logo is installed as a symlink using install_symlink() which exists since meson 0.61.0 so I bumped our meson dependency (in practice we were already using this function anyway and Debian bookworm has meson 1.0.1 so it's all good). Finally I don't install a wilber.png anymore, which was only used by script-fu testing, and which was the same as gimp-logo.png (except 256x256 instead of 128x128). Unless mistaken, all script-fu tests loading this image still work with the change. The only one where I needed further change was buffer.scm (which was checking the dimensions). See gimp-data@9aa6e35.
25 lines
541 B
Meson
25 lines
541 B
Meson
subdir('dynamics')
|
|
subdir('environ')
|
|
subdir('gradients')
|
|
subdir('interpreters')
|
|
subdir('palettes')
|
|
subdir('tags')
|
|
subdir('tips')
|
|
subdir('tool-presets')
|
|
|
|
|
|
meson.add_install_script('sh', '-c',
|
|
'mkdir -p $MESON_INSTALL_DESTDIR_PREFIX/@0@'.format(gimpdatadir / 'fonts')
|
|
)
|
|
|
|
release_conf = configuration_data()
|
|
release_conf.set('REVISION', get_option('revision'))
|
|
|
|
gimp_release = 'gimp-release'
|
|
configure_file(
|
|
input : gimp_release + '.in',
|
|
output: gimp_release,
|
|
configuration: release_conf,
|
|
install: true,
|
|
install_dir: gimpdatadir,
|
|
)
|