mirror of
git://git.yoctoproject.org/meta-intel.git
synced 2025-07-05 05:04:45 +02:00

Update to match the recent changes in OE-Core where the unpack layout changed. [https://patchwork.yoctoproject.org/project/oe-core/patch/20250616095000.2918921-1-alex.kanavin@gmail.com/] Signed-off-by: Yogesh Tyagi <yogesh.tyagi@intel.com> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
21 lines
666 B
BlitzBasic
21 lines
666 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"
|
|
|
|
do_install() {
|
|
mkdir -p ${D}${sysconfdir}/ld.so.conf.d/
|
|
install -m 644 ${UNPACKDIR}/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"
|