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

Release Notes: https://github.com/oneapi-src/level-zero/releases/tag/v1.21.1 Signed-off-by: Yogesh Tyagi <yogesh.tyagi@intel.com> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
34 lines
1.0 KiB
BlitzBasic
34 lines
1.0 KiB
BlitzBasic
SUMMARY = "oneAPI Level Zero Specification Headers and Loader"
|
|
HOMEPAGE = "https://github.com/oneapi-src/level-zero"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=97957beb2f7808ffa247e5d93e6442cc"
|
|
|
|
SRC_URI = "git://github.com/oneapi-src/level-zero.git;protocol=https;branch=master"
|
|
SRCREV = "9536683855b17a21508e5b54ba358225d6a976da"
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit cmake
|
|
DEPENDS += "opencl-headers"
|
|
|
|
UPSTREAM_CHECK_GITTAGREGEX = "^v(?P<pver>(\d+(\.\d+)+))$"
|
|
|
|
PACKAGES =+ "${PN}-headers ${PN}-samples ${PN}-loader"
|
|
|
|
do_install:append () {
|
|
install -d ${D}${bindir} ${D}${libdir}
|
|
install -m 755 ${B}/bin/zello* ${D}${bindir}
|
|
|
|
oe_libinstall -C lib libze_null ${D}${libdir}
|
|
}
|
|
|
|
|
|
FILES:${PN}-headers = "${includedir}"
|
|
FILES:${PN}-samples = "${bindir} ${libdir}/libze_null* ${libdir}/libze_validation*"
|
|
FILES:${PN}-loader = "${libdir}"
|
|
|
|
# PN-loader (non -dev/-dbg/nativesdk- package) contains symlink .so
|
|
INSANE_SKIP:${PN}-loader = "dev-so"
|
|
INSANE_SKIP:${PN}-samples = "dev-so"
|
|
ALLOW_EMPTY:${PN} = "1"
|
|
BBCLASSEXTEND = "native nativesdk"
|