meta-intel/dynamic-layers/openembedded-layer/recipes-oneapi/setup-oneapi-env/setup-intel-oneapi-env_2023.0.0-25370.bb
Yogesh Tyagi c62b2d0e99 meta-intel: move oneAPI IPP and setup-oneapi-env into dynamic openembedded layer
Move intel-oneapi-ipp and setup-intel-oneapi-env recipes under
dynamic-layers/openembedded-layer to make oneAPI components
conditionally enabled.

This is a pure refactor with no functional changes to the recipes.
It aligns oneAPI packages with the existing dynamic layer structure
used for optional Intel runtimes.

Signed-off-by: Yogesh Tyagi <yogesh.tyagi@intel.com>
2026-01-20 18:27:40 +05:30

23 lines
678 B
BlitzBasic

SUMMARY = "Intel® oneAPI runtime libraries environment set up"
DESCRIPTION = "Recipe to set up the environment for Intel® oneAPI runtime libraries \
via configuration file in ld.so.conf.d directory."
LICENSE = "EULA"
LIC_FILES_CHKSUM = "file://${CUSTOM_LICENSES_PATH}/EULA;md5=7bfc91523de2e84e7131d0eacf2827d4"
SRC_URI = "file://intel-oneapi-runtime.conf"
S = "${UNPACKDIR}"
do_install() {
mkdir -p ${D}${sysconfdir}/ld.so.conf.d/
install -m 644 ${S}/intel-oneapi-runtime.conf ${D}${sysconfdir}/ld.so.conf.d/
}
pkg_postinst_ontarget:${PN}() {
if [ x"$D" = "x" ]; then
if [ -x /sbin/ldconfig ]; then /sbin/ldconfig ; fi
fi
}
BBCLASSEXTEND = "native nativesdk"