mirror of
git://git.yoctoproject.org/meta-intel.git
synced 2025-07-19 12:59:03 +02:00

Use the convert-overrides.py to convert to new syntax and manually fix some additional changes. Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
32 lines
988 B
BlitzBasic
32 lines
988 B
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=8956dfdba7f8169c4005d1e9753ffddc"
|
|
|
|
SRC_URI = "git://github.com/oneapi-src/level-zero.git;protocol=https"
|
|
SRCREV = "0d30b1fa712253c68bfdfa3863d380df4301b8a4"
|
|
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"
|