blob: 3d3ef8266841db28490ca558db502b242c80ed18 [file] [log] [blame]
Andrew Geissler82c905d2020-04-13 13:39:40 -05001SUMMARY = "Embedded Linux Library"
Andrew Geissler90fd73c2021-03-05 15:25:55 -06002HOMEPAGE = "https://01.org/ell"
Andrew Geissler82c905d2020-04-13 13:39:40 -05003DESCRIPTION = "The Embedded Linux Library (ELL) provides core, \
4low-level functionality for system daemons. It typically has no \
5dependencies other than the Linux kernel, C standard library, and \
6libdl (for dynamic linking). While ELL is designed to be efficient \
7and compact enough for use on embedded Linux platforms, it is not \
8limited to resource-constrained systems."
9SECTION = "libs"
10LICENSE = "LGPLv2.1"
11LIC_FILES_CHKSUM = "file://COPYING;md5=fb504b67c50331fc78734fed90fb0e09"
12
13DEPENDS = "dbus"
14
15inherit autotools pkgconfig
16
Andrew Geisslerd1e89492021-02-12 15:35:20 -060017SRC_URI = "https://mirrors.edge.kernel.org/pub/linux/libs/${BPN}/${BPN}-${PV}.tar.xz \
18 file://0001-pem.c-do-not-use-rawmemchr.patch \
19 "
Andrew Geisslerd159c7f2021-09-02 21:05:58 -050020SRC_URI[sha256sum] = "b6c75895ad64bf78f5b5c464de871048d02f9403be518084e0d64b58f508c9fc"
Andrew Geissler82c905d2020-04-13 13:39:40 -050021
Patrick Williams213cb262021-08-07 19:21:33 -050022do_configure:prepend () {
Andrew Geissler82c905d2020-04-13 13:39:40 -050023 mkdir -p ${S}/build-aux
24}