mirror of
git://git.yoctoproject.org/meta-intel
synced 2026-01-01 13:58:05 +00:00
The initial version of the recipe for Intel OneAPI IPP library. IPP is an extensive library of ready-to-use, domain-specific functions that are highly optimized for diverse Intel architectures. Signed-off-by: Mariia Vtiurina <mariia.vtiurina@intel.com> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
20 lines
629 B
BlitzBasic
20 lines
629 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=9057fba3b8ada79f1bce0d1c195c7d1f"
|
|
|
|
SRC_URI = "file://intel-oneapi-runtime.conf"
|
|
|
|
do_install() {
|
|
mkdir -p ${D}${sysconfdir}/ld.so.conf.d/
|
|
install -m 644 ${WORKDIR}/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
|
|
}
|