summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Volk <f_l_k@t-online.de>2023-01-15 17:52:48 +0100
committerKhem Raj <raj.khem@gmail.com>2023-01-15 10:53:20 -0800
commitbc3b07dac0a0420976f0234e13eb5c5ca6d19c01 (patch)
tree28a7f277dee4df3d96b1ffec0311be65d93c29a0
parentca7082caa800124b4e0a7b36175f60387d1e3f8c (diff)
downloadmeta-openembedded-bc3b07dac0a0420976f0234e13eb5c5ca6d19c01.tar.gz
webp-pixbuf-loader: add recipe
This adds a gdk-pixbuf loader for webp images. It fixes thumbnailing and adds support for webp in e.g. gnome-viewer (eog). gnome-background contains lots of webp images. The default wallpaper is set to 'adwaita-d.webp' and gnome-shell fails to load it. Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-gnome/recipes-support/webp-pixbuf-loader/webp-pixbuf-loader_0.7.bb23
1 files changed, 23 insertions, 0 deletions
diff --git a/meta-gnome/recipes-support/webp-pixbuf-loader/webp-pixbuf-loader_0.7.bb b/meta-gnome/recipes-support/webp-pixbuf-loader/webp-pixbuf-loader_0.7.bb
new file mode 100644
index 0000000000..17a3436741
--- /dev/null
+++ b/meta-gnome/recipes-support/webp-pixbuf-loader/webp-pixbuf-loader_0.7.bb
@@ -0,0 +1,23 @@
1SUMMARY = "WebP GDK Pixbuf Loader library"
2HOMEPAGE = "https://github.com/aruiz/webp-pixbuf-loader"
3LICENSE = "LGPL-2.1-or-later"
4LIC_FILES_CHKSUM = "file://LICENSE.LGPL-2;md5=0d90e6d44bcf69014bfae649c75aa6ca"
5
6DEPENDS = " \
7 gdk-pixbuf \
8 libwebp \
9"
10
11inherit meson pkgconfig
12
13EXTRA_OEMESON = "-Dupdate_cache=true"
14
15SRC_URI = "git://github.com/aruiz/webp-pixbuf-loader.git;protocol=https;nobranch=1"
16
17S = "${WORKDIR}/git"
18SRCREV = "f91f79c05ff90b41774eda613dc10a2a0d996bc8"
19
20FILES:${PN} = " \
21 ${datadir}/thumbnailers/webp-pixbuf.thumbnailer \
22 ${libdir}/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-webp.so \
23"