Updated with upstream update

This commit is contained in:
2023-10-30 15:55:30 -07:00
parent 098531073c
commit 3bbdd873ef
584 changed files with 91827 additions and 70362 deletions

View File

@ -36,6 +36,13 @@ foreach install : install_icons
endforeach
install_data(icons, install_dir: pikaiconsdir / theme / outdir / 'apps')
mascot_eek = '@0@/pika-mascot-eek@1@'.format(indir, suffix)
if mascot_eek in icons
install_data(mascot_eek,
rename: 'image-missing@0@'.format(suffix),
install_dir: pikaiconsdir / theme / outdir / 'apps')
endif
endforeach
icons_core = [ '64/dialog-question.png', ]

View File

@ -41,6 +41,18 @@ foreach install : install_icons
endforeach
install_data(icons, install_dir: pikaiconsdir / theme / outdir / 'apps')
mascot_eek = '@0@/pika-mascot-eek@1@'.format(indir, suffix)
if mascot_eek in icons
# Note: since this is just a copy of pika-mascot-week, we could just do a
# symlink with install_symlink(), but this is only available in meson 0.61.0
# and looking at its code, it would apparently fail if symlinks are not
# available in the target OS (instead of silently and intelligently falling
# back to doing a copy).
install_data(mascot_eek,
rename: 'image-missing@0@'.format(suffix),
install_dir: pikaiconsdir / theme / outdir / 'apps')
endif
endforeach
icons_core = [ '64/pika-question.png', ]