- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
28 lines
680 B
BlitzBasic
28 lines
680 B
BlitzBasic
require libcap-ng.inc
|
|
|
|
FILESEXTRAPATHS:prepend := "${THISDIR}/libcap-ng:"
|
|
|
|
SUMMARY .= " - python"
|
|
|
|
inherit lib_package autotools python3targetconfig
|
|
|
|
# drop setuptools when version > 0.8.3 is released; it's needed only for distutils
|
|
DEPENDS += "libcap-ng python3 swig-native python3-setuptools-native"
|
|
|
|
EXTRA_OECONF += "--with-python3"
|
|
|
|
do_install:append() {
|
|
rm -rf ${D}${bindir}
|
|
rm -rf ${D}${libdir}/.debug
|
|
rm -f ${D}${libdir}/lib*
|
|
rm -rf ${D}${libdir}/pkgconfig
|
|
rm -rf ${D}${datadir}
|
|
rm -rf ${D}${includedir}
|
|
}
|
|
|
|
# PACKAGES = "${PN}"
|
|
|
|
FILES:${PN} = "${libdir}/python${PYTHON_BASEVERSION}"
|
|
FILES:${PN}-dbg =+ "${PYTHON_SITEPACKAGES_DIR}/.debug/_capng.so"
|
|
|