mirror of
https://git.yoctoproject.org/poky
synced 2026-03-31 11:02:21 +02:00
The libevdev configure script contains an unconditional check for libcheck. If libcheck is found, libevdev unit tests will be built. Without a dependency, the presence of libcheck in sysroot is non deterministic (in morty and earlier) and builds can fail if libcheck is available during do_configure but not during do_compile. (In pyro and later, the libcheck dependency is not required to make libevdev builds deterministic due to recipe specific sysroots). (From OE-Core rev: 9dc52a9959b05c9fa548f1991366f29ae873a793) Signed-off-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
17 lines
580 B
BlitzBasic
17 lines
580 B
BlitzBasic
SUMMARY = "Wrapper library for evdev devices"
|
|
HOMEPAGE = "http://www.freedesktop.org/wiki/Software/libevdev/"
|
|
SECTION = "libs"
|
|
|
|
LICENSE = "MIT-X"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=75aae0d38feea6fda97ca381cb9132eb \
|
|
file://libevdev/libevdev.h;endline=21;md5=7ff4f0b5113252c2f1a828e0bbad98d1"
|
|
|
|
DEPENDS = "libcheck"
|
|
|
|
SRC_URI = "http://www.freedesktop.org/software/libevdev/${BP}.tar.xz"
|
|
|
|
SRC_URI[md5sum] = "96ad6edb5ce5c4428f1b183cc180ff8c"
|
|
SRC_URI[sha256sum] = "5ee2163656a61f5703cb5c08a05c9471ffb7b640bfbe2c55194ea50d908f629b"
|
|
|
|
inherit autotools pkgconfig
|