diff options
| author | Hiago De Franco <hiago.franco@toradex.com> | 2024-11-25 21:08:35 -0300 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-11-27 16:44:47 +0000 |
| commit | 0b1edfb884858086269a7a81cfceaca1f7cc26c8 (patch) | |
| tree | 2afdc871df7483fab3b494f9edb1889e1c1c0df4 /meta/recipes-support/libdisplay-info/libdisplay-info_0.2.0.bb | |
| parent | 84a297d82364ab8eef0de08d031b51e00635f185 (diff) | |
| download | poky-0b1edfb884858086269a7a81cfceaca1f7cc26c8.tar.gz | |
libdisplay-info: add recipe
libdisplay-info is a EDID and DisplayID library. Goals:
- Provide a set of high-level, easy-to-use, opinionated functions as
well as low-level functions to access detailed information.
- Simplicity and correctness over performance and resource usage.
- Well-tested and fuzzed.
Since commit a16598b038b2 ("backend-drm: make libdisplay-info
mandatory") from Weston, this library is now mandatory in order to
build weston 14.0.1 and newer.
(From OE-Core rev: aa3fe5a5c00085f5455a66c1033f4124e76239ec)
Signed-off-by: Hiago De Franco <hiago.franco@toradex.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/libdisplay-info/libdisplay-info_0.2.0.bb')
| -rw-r--r-- | meta/recipes-support/libdisplay-info/libdisplay-info_0.2.0.bb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/meta/recipes-support/libdisplay-info/libdisplay-info_0.2.0.bb b/meta/recipes-support/libdisplay-info/libdisplay-info_0.2.0.bb new file mode 100644 index 0000000000..f5156cc9f7 --- /dev/null +++ b/meta/recipes-support/libdisplay-info/libdisplay-info_0.2.0.bb | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | SUMMARY = "EDID and DisplayID library" | ||
| 2 | DESCRIPTION = "The goal of this library is to provide a set of high-level, \ | ||
| 3 | easy-to-use, and opinionated functions, as well as low-level functions for \ | ||
| 4 | accessing detailed information, prioritizing simplicity and correctness over \ | ||
| 5 | performance and resource usage, while being well-tested and fuzzed." | ||
| 6 | HOMEPAGE = "https://gitlab.freedesktop.org/emersion/libdisplay-info" | ||
| 7 | LICENSE = "MIT" | ||
| 8 | LIC_FILES_CHKSUM = "file://LICENSE;md5=e4426409957080ee0352128354cea2de" | ||
| 9 | DEPENDS = "hwdata-native" | ||
| 10 | |||
| 11 | SRC_URI = "git://gitlab.freedesktop.org/emersion/libdisplay-info.git;branch=main;protocol=https" | ||
| 12 | SRCREV = "66b802d05b374cd8f388dc6ad1e7ae4f08cb3300" | ||
| 13 | |||
| 14 | S = "${WORKDIR}/git" | ||
| 15 | |||
| 16 | inherit meson pkgconfig lib_package | ||
