mirror of
https://git.yoctoproject.org/poky
synced 2026-04-27 12:32:13 +02:00
This package is split into two recipes, one of the actual C library and one for the Python bindings. - Move common inherits into the common .inc. - Clean up install in the python recipe - Remove obsolete setuptools dependency - Remove obsolete explicit .debug packaging - Update homepage as freecode.com redirects to the top of SourceForge (From OE-Core rev: 0ccd7429aabfe5c1c9246477acf1af84a147715c) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
20 lines
375 B
BlitzBasic
20 lines
375 B
BlitzBasic
require libcap-ng.inc
|
|
|
|
FILESEXTRAPATHS:prepend := "${THISDIR}/libcap-ng:"
|
|
|
|
SUMMARY .= " - python"
|
|
|
|
inherit python3targetconfig
|
|
|
|
DEPENDS += "libcap-ng python3 swig-native"
|
|
|
|
S = "${WORKDIR}/libcap-ng-${PV}"
|
|
|
|
EXTRA_OECONF += "--with-python3"
|
|
|
|
do_install() {
|
|
oe_runmake 'DESTDIR=${D}' install -C ${B}/bindings/python3
|
|
}
|
|
|
|
FILES:${PN} = "${libdir}/python${PYTHON_BASEVERSION}"
|