From c97c2727e2530730eac1d0136fcea5fe73fde026 Mon Sep 17 00:00:00 2001 From: Markus Volk Date: Fri, 3 Jun 2022 07:55:15 +0200 Subject: [PATCH] libdecor: initial add recipe --- recipes-graphics/libdecor/libdecor_0.1.0.bb | 28 +++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 recipes-graphics/libdecor/libdecor_0.1.0.bb diff --git a/recipes-graphics/libdecor/libdecor_0.1.0.bb b/recipes-graphics/libdecor/libdecor_0.1.0.bb new file mode 100644 index 0000000..febd4f4 --- /dev/null +++ b/recipes-graphics/libdecor/libdecor_0.1.0.bb @@ -0,0 +1,28 @@ +SUMMARY = "libdecor - A client-side decorations library for Wayland clients" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE;md5=7ae2be7fb1637141840314b51970a9f7" + +SRC_URI = "git://gitlab.gnome.org/jadahl/libdecor.git;protocol=https;branch=master" + +DEPENDS = " \ + cairo \ + libxkbcommon \ + pango \ + wayland \ + wayland-native \ + wayland-protocols \ +" + +S = "${WORKDIR}/git" +SRCREV = "3ec3fadd59a21835079fbb3046d2bec6c649d6fa" + +PACKAGECONFIG ?= "dbus" + +PACKAGECONFIG[dbus] = "-Ddbus=enabled,-Ddbus=disabled,dbus" +PACKAGECONFIG[demo] = "-Ddemo=true,-Ddemo=false,virtual/libgl" + +inherit meson pkgconfig + +EXTRA_OEMESON += "--buildtype release" + +BBCLASSEXTEND = "native nativesdk"