From cf57103cf0fb48fcee03eda4dcc7589dcae9badd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Thu, 7 Jan 2021 13:44:39 +0100 Subject: [PATCH] picom: initial add 8.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas Müller --- recipes-graphics/picom/picom.bb | 36 +++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 recipes-graphics/picom/picom.bb diff --git a/recipes-graphics/picom/picom.bb b/recipes-graphics/picom/picom.bb new file mode 100644 index 00000000..5f50477d --- /dev/null +++ b/recipes-graphics/picom/picom.bb @@ -0,0 +1,36 @@ +SUMMARY = "A lightweight compositor for X11" +HOMEPAGE = "https://github.com/yshui/picom" +LICENSE = "MPL-2.0 & MIT" +LIC_FILES_CHKSUM = "file://COPYING;md5=a9a621b5a1b8f702c605093d657b550c" + +SRC_URI = "git://github.com/yshui/picom.git;branch=stable/8" +SRCREV = "dac85eac10082dfc3df463aaa74b811144e22122" +PV = "8.2" +S = "${WORKDIR}/git" + +DEPENDS = " \ + libxext \ + libxdamage \ + libxfixes \ + xcb-util-renderutil \ + libxrender \ + libxrandr \ + libxcomposite \ + xcb-util-image \ + libxpresent \ + libxinerama \ + libdrm \ + libev \ + pixman \ + dbus \ + libconfig \ + libpcre \ + uthash \ +" + +inherit meson features_check gtk-icon-cache + +REQUIRED_DISTRO_FEATURES = "x11" + +PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'opengl', d)}" +PACKAGECONFIG[opengl] = "-Dopengl=true,-Dopengl=false,virtual/libgl"