summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-xfce/recipes-xfce/libxfce4windowing/libxfce4windowing_4.20.0.bb24
1 files changed, 24 insertions, 0 deletions
diff --git a/meta-xfce/recipes-xfce/libxfce4windowing/libxfce4windowing_4.20.0.bb b/meta-xfce/recipes-xfce/libxfce4windowing/libxfce4windowing_4.20.0.bb
new file mode 100644
index 0000000000..e16997ca11
--- /dev/null
+++ b/meta-xfce/recipes-xfce/libxfce4windowing/libxfce4windowing_4.20.0.bb
@@ -0,0 +1,24 @@
1SUMMARY = "Windowing concept abstraction library for X11 and Wayland"
2SECTION = "x11/libs"
3LICENSE = "LGPL-2.1-only"
4LIC_FILES_CHKSUM = "file://COPYING;md5=435ed639f84d4585d93824e7da3d85da"
5
6DEPENDS = "xfce4-dev-tools-native libdisplay-info libwnck3"
7
8SRC_URI[sha256sum] = "56f29b1d79606fb00a12c83ef4ece12877d2b22bf1acaaff89537fbe8e939f68"
9
10inherit features_check gobject-introspection gtk-doc xfce
11
12# Currently, X11 is fully supported. Wayland is partially supported
13REQUIRED_DISTRO_FEATURES = "x11"
14
15PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'wayland', d)}"
16PACKAGECONFIG[wayland] = "--enable-wayland, --disable-wayland, wayland-native"
17
18EXTRA_OECONF = "--enable-x11 \
19 WAYLAND_SCANNER=${STAGING_BINDIR_NATIVE}/wayland-scanner \
20 "
21
22do_compile:prepend() {
23 export GIR_EXTRA_LIBS_PATH=${B}/libxfce4windowing/.libs
24}