diff options
author | Markus Volk <f_l_k@t-online.de> | 2023-01-15 17:52:48 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-01-15 10:53:20 -0800 |
commit | bc3b07dac0a0420976f0234e13eb5c5ca6d19c01 (patch) | |
tree | 28a7f277dee4df3d96b1ffec0311be65d93c29a0 | |
parent | ca7082caa800124b4e0a7b36175f60387d1e3f8c (diff) | |
download | meta-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.bb | 23 |
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 @@ | |||
1 | SUMMARY = "WebP GDK Pixbuf Loader library" | ||
2 | HOMEPAGE = "https://github.com/aruiz/webp-pixbuf-loader" | ||
3 | LICENSE = "LGPL-2.1-or-later" | ||
4 | LIC_FILES_CHKSUM = "file://LICENSE.LGPL-2;md5=0d90e6d44bcf69014bfae649c75aa6ca" | ||
5 | |||
6 | DEPENDS = " \ | ||
7 | gdk-pixbuf \ | ||
8 | libwebp \ | ||
9 | " | ||
10 | |||
11 | inherit meson pkgconfig | ||
12 | |||
13 | EXTRA_OEMESON = "-Dupdate_cache=true" | ||
14 | |||
15 | SRC_URI = "git://github.com/aruiz/webp-pixbuf-loader.git;protocol=https;nobranch=1" | ||
16 | |||
17 | S = "${WORKDIR}/git" | ||
18 | SRCREV = "f91f79c05ff90b41774eda613dc10a2a0d996bc8" | ||
19 | |||
20 | FILES:${PN} = " \ | ||
21 | ${datadir}/thumbnailers/webp-pixbuf.thumbnailer \ | ||
22 | ${libdir}/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-webp.so \ | ||
23 | " | ||