mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
Refer [1], people.redhat.com has certificate issue, so update SRC_URI to fix do_fetch warning [1] https://github.com/stevegrubb/libcap-ng/issues/56 (From OE-Core rev: ba5d05337c97ec14d00939f02ecdd6aeab126822) Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
24 lines
986 B
PHP
24 lines
986 B
PHP
SUMMARY = "An alternate posix capabilities library"
|
|
DESCRIPTION = "The libcap-ng library is intended to make programming \
|
|
with POSIX capabilities much easier than the traditional libcap library."
|
|
HOMEPAGE = "http://freecode.com/projects/libcap-ng"
|
|
SECTION = "base"
|
|
LICENSE = "GPL-2.0-or-later & LGPL-2.1-or-later"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
|
|
file://COPYING.LIB;md5=e3eda01d9815f8d24aae2dbd89b68b06"
|
|
|
|
SRC_URI = "git://github.com/stevegrubb/libcap-ng.git;protocol=https;branch=master \
|
|
file://0001-Fix-python-path-when-invoking-py-compile-54.patch \
|
|
"
|
|
SRCREV = "f5d39702622208b3ada064d7b2eaeaf1454c9bd3"
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_configure:prepend() {
|
|
touch ${S}/NEWS
|
|
}
|
|
|
|
EXTRA_OECONF:append:class-target = " --with-capability_header=${STAGING_INCDIR}/linux/capability.h"
|
|
EXTRA_OECONF:append:class-nativesdk = " --with-capability_header=${STAGING_INCDIR}/linux/capability.h"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|