diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2022-12-30 19:38:44 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-01-02 17:34:11 +0000 |
commit | f7e9d1eec75aecb45d5e00e9fc2ee716ddfdf4d5 (patch) | |
tree | fedaa43e7dba8fbc7a34d9ebcde05e4c3e230904 /meta/recipes-gnome/libportal | |
parent | 82e77db0cec6d380766e510b9b8fdd95e2b889d0 (diff) | |
download | poky-f7e9d1eec75aecb45d5e00e9fc2ee716ddfdf4d5.tar.gz |
libportal: add from meta-openembedded/meta-gnome
This used to be required by epiphany, then it became
optional and was moved to meta-oe, now it is again required.
The recipe was originally provided by... actually me :-)
(From OE-Core rev: e3c1fb52a0720d88dbc6eb91935c82733cdaea44)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-gnome/libportal')
-rw-r--r-- | meta/recipes-gnome/libportal/libportal_0.6.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta/recipes-gnome/libportal/libportal_0.6.bb b/meta/recipes-gnome/libportal/libportal_0.6.bb new file mode 100644 index 0000000000..9c628c457f --- /dev/null +++ b/meta/recipes-gnome/libportal/libportal_0.6.bb | |||
@@ -0,0 +1,19 @@ | |||
1 | SUMMARY = "libportal provides GIO-style async APIs for most Flatpak portals." | ||
2 | DESCRIPTION = "It provides simple asynchronous wrappers for most Flatpak portals \ | ||
3 | with a familiar GObject API along side the D-Bus API" | ||
4 | HOMEPAGE = "https://github.com/flatpak/libportal" | ||
5 | BUGTRACKER = "https://github.com/flatpak/libportal/issues" | ||
6 | LICENSE = "LGPL-3.0-only" | ||
7 | LIC_FILES_CHKSUM = "file://COPYING;md5=3000208d539ec061b899bce1d9ce9404" | ||
8 | |||
9 | SRC_URI = "git://github.com/flatpak/${BPN}.git;protocol=https;branch=main" | ||
10 | SRCREV = "13df0b887a7eb7b0f9b14069561a41f62e813155" | ||
11 | S = "${WORKDIR}/git" | ||
12 | |||
13 | inherit meson gtk-doc gobject-introspection vala features_check | ||
14 | |||
15 | ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}" | ||
16 | |||
17 | DEPENDS += "glib-2.0 glib-2.0-native gtk+3 gtk4" | ||
18 | |||
19 | EXTRA_OEMESON = "-Dbackends=gtk3,gtk4" | ||