diff options
| author | Markus Volk <f_l_k@t-online.de> | 2023-09-08 12:05:00 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2023-09-10 06:49:11 -0700 |
| commit | f4fa25231c7e66c87808439f8cc1921dc052da44 (patch) | |
| tree | 2c2f016543cc43fe0fd9ada31107f9f97e864cb8 | |
| parent | 8196c8bf4aec11a4fa6303b263a36a1aa3401442 (diff) | |
| download | meta-openembedded-f4fa25231c7e66c87808439f8cc1921dc052da44.tar.gz | |
libei: add recipe
libei is a library for Emulated Input, primarily aimed at the Wayland stack.
It uses a typical client/server separation, with the two parts connected via
a UNIX socket. In libei parlance, the client-side is called “EI client”, the
server side, typically a Wayland compositor, is called the “EIS Implementation”
(Emulated Input Server).
libei is a required dependency for the upcoming mutter-45 release
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-oe/recipes-graphics/wayland/libei_1.1.0.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-oe/recipes-graphics/wayland/libei_1.1.0.bb b/meta-oe/recipes-graphics/wayland/libei_1.1.0.bb new file mode 100644 index 0000000000..1727ef9be7 --- /dev/null +++ b/meta-oe/recipes-graphics/wayland/libei_1.1.0.bb | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | SUMMARY = "libei is a library for Emulated Input, primarily aimed at the Wayland stack." | ||
| 2 | HOMEPAGE = "https://gitlab.freedesktop.org/libinput/libei" | ||
| 3 | SECTION = "graphics" | ||
| 4 | LICENSE = "MIT" | ||
| 5 | |||
| 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=a98fa76460f96f41696611d6f07e8d49" | ||
| 7 | |||
| 8 | DEPENDS = " \ | ||
| 9 | libxkbcommon \ | ||
| 10 | libevdev \ | ||
| 11 | libxslt-native \ | ||
| 12 | python3-attrs-native \ | ||
| 13 | python3-jinja2-native \ | ||
| 14 | ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd', 'basu', d)} \ | ||
| 15 | " | ||
| 16 | |||
| 17 | SRC_URI = "git://gitlab.freedesktop.org/libinput/libei.git;protocol=https;branch=main" | ||
| 18 | |||
| 19 | S = "${WORKDIR}/git" | ||
| 20 | SRCREV = "82cdbc9129a0e2c255fcee6bcaa7abed5578ae14" | ||
| 21 | |||
| 22 | inherit meson pkgconfig | ||
| 23 | |||
| 24 | EXTRA_OEMESON = "-Dtests=disabled" | ||
| 25 | |||
