meta-wayland/recipes-wlroots/wlroots/wlroots_git.bb

56 lines
1.6 KiB
BlitzBasic
Raw Normal View History

2021-06-02 16:13:46 +02:00
SUMMARY = "A modular Wayland compositor library"
DESCRIPTION = "Pluggable, composable, unopinionated modules for building a \
Wayland compositor; or about 50,000 lines of code you were \
going to write anyway."
HOMEPAGE = "https://gitlab.freedesktop.org/wlroots"
BUGTRACKER = "https://gitlab.freedesktop.org/wlroots/wlroots/-/issues"
2021-06-02 16:13:46 +02:00
SECTION = "graphics"
LICENSE = "MIT & CC0-1.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=89e064f90bcb87796ca335cbd2ce4179"
LIC_FILES_CHKSUM += "file://tinywl/LICENSE;md5=d957da0415f5b0b974bfc6063afab2b5"
2021-06-02 16:13:46 +02:00
REQUIRED_DISTRO_FEATURES = "wayland"
DEPENDS += " \
2023-01-31 12:13:16 +01:00
hwdata-native \
2023-03-04 06:44:32 +01:00
libdisplay-info \
2022-09-29 10:33:28 +02:00
libdrm \
2023-03-30 09:54:41 +02:00
libliftoff \
2021-06-02 16:13:46 +02:00
libxkbcommon \
pixman \
seatd \
wayland \
wayland-native \
wayland-protocols \
"
2022-09-29 10:33:28 +02:00
PACKAGECONFIG[opengl] = ",,virtual/egl virtual/libgles2"
PACKAGECONFIG[gbm] = ",,virtual/libgbm"
2021-10-27 15:58:21 +02:00
PACKAGECONFIG[libinput] = ",,libinput"
PACKAGECONFIG[systemd] = ",,systemd"
PACKAGECONFIG[sysvinit] = ",,eudev elogind"
2022-09-29 10:33:28 +02:00
PACKAGECONFIG[vulkan] = ",,vulkan-loader vulkan-headers glslang-native"
PACKAGECONFIG[x11] = ",,xcb-util-renderutil"
PACKAGECONFIG[xwayland] = "-Dxwayland=enabled,-Dxwayland=disabled,xwayland xcb-util-wm,xwayland"
2021-06-02 16:13:46 +02:00
PACKAGECONFIG ?= " \
2023-03-04 06:44:32 +01:00
${@bb.utils.filter('DISTRO_FEATURES', 'systemd vulkan x11 xwayland opengl', d)} \
libinput \
2021-06-02 16:13:46 +02:00
"
2023-01-31 12:13:16 +01:00
SRC_URI = "git://gitlab.freedesktop.org/wlroots/wlroots.git;branch=master;protocol=https"
2023-11-25 12:33:45 +01:00
SRCREV = "36cc698bc5513655e5c57ba62693fce9001d86e7"
PV = "0.18.0-dev"
2021-06-02 16:13:46 +02:00
S = "${WORKDIR}/git"
inherit meson pkgconfig features_check
2021-06-02 16:13:46 +02:00
2023-02-13 15:28:00 +01:00
EXTRA_OEMESON += "--buildtype release"
do_install:append() {
install -d ${D}${bindir}
install -m 0755 ${B}/tinywl/tinywl ${D}${bindir}
}