diff options
author | Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com> | 2021-10-28 20:43:55 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-10-30 18:56:47 +0100 |
commit | b777781ebf88f049c37a04154e86ed0940d11d95 (patch) | |
tree | d8ea8d3ea60c4d77f00a519ea40d2dec38ca4d74 /meta/recipes-graphics | |
parent | 05ce40b2ce21a0a9c16ad55711c1ae2c9d906b96 (diff) | |
download | poky-b777781ebf88f049c37a04154e86ed0940d11d95.tar.gz |
libxcvt: add recipe
This library is a dependancy of xserver-xorg 21.1.0.
(From OE-Core rev: b52bfac18a6b0f9216cd14da60e6fffb3e5669f1)
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics')
-rw-r--r-- | meta/recipes-graphics/xorg-lib/libxcvt_0.1.1.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta/recipes-graphics/xorg-lib/libxcvt_0.1.1.bb b/meta/recipes-graphics/xorg-lib/libxcvt_0.1.1.bb new file mode 100644 index 0000000000..134c40acd1 --- /dev/null +++ b/meta/recipes-graphics/xorg-lib/libxcvt_0.1.1.bb | |||
@@ -0,0 +1,19 @@ | |||
1 | SUMMARY = "Library providing a standalone version of the X server \ | ||
2 | implementation of the VESA CVT standard timing modelines generator" | ||
3 | HOMEPAGE = "https://gitlab.freedesktop.org/xorg/lib/libxcvt" | ||
4 | BUGTRACKER = "https://gitlab.freedesktop.org/xorg/lib/libxcvt/-/issues" | ||
5 | LICENSE = "MIT" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=129947a06984d6faa6f9a9788fa2a03f" | ||
7 | SECTION = "x11/libs" | ||
8 | |||
9 | SRC_URI = "git://gitlab.freedesktop.org/xorg/lib/libxcvt.git;protocol=https;branch=master" | ||
10 | SRCREV = "6fe840b9295cfdc41bd734586c5b8756f6af6f9b" | ||
11 | |||
12 | S = "${WORKDIR}/git" | ||
13 | |||
14 | inherit meson | ||
15 | |||
16 | FILES:${PN} = " \ | ||
17 | ${libdir}/libxcvt.so.0* \ | ||
18 | ${bindir}/cvt \ | ||
19 | " | ||