mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
35 lines
1.0 KiB
BlitzBasic
35 lines
1.0 KiB
BlitzBasic
SUMMARY = "Library to instrument executable formats"
|
|
DESCRIPTION = "LIEF: Library to Instrument Executable Formats"
|
|
HOMEPAGE = "https://github.com/lief-project/LIEF"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=9ab5db472ff936b441055522f5000547"
|
|
SECTION = "libs"
|
|
|
|
SRC_URI = " \
|
|
git://github.com/lief-project/LIEF.git;protocol=https;branch=main \
|
|
file://0001-build-requirements.txt-Allow-newer-versions.patch \
|
|
file://0002-api-python-config-default.toml-Debug.patch \
|
|
"
|
|
SRCREV = "abcf929efb748c7846dd59007cbb807e108db311"
|
|
PV .= "+git"
|
|
|
|
PEP517_SOURCE_PATH = "${S}/api/python"
|
|
|
|
export LIEF_BUILD_DIR = "${B}"
|
|
|
|
inherit python_setuptools_build_meta
|
|
|
|
DEPENDS += "\
|
|
python3-scikit-build-native \
|
|
python3-scikit-build-core-native \
|
|
python3-tomli-native \
|
|
python3-pydantic-native \
|
|
ninja-native \
|
|
ccache-native \
|
|
python3-typing-inspection \
|
|
"
|
|
# https://github.com/lief-project/LIEF/commit/3def579f75965aa19c021d840a759bce2afc0a31#r152197203
|
|
COMPATIBLE_HOST:x86 = "null"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|