blob: 4ecb8fc7d5e0330d72bb1d548ab6677ce250d680 [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001SUMMARY = "OpenCL API Headers"
2DESCRIPTION = "OpenCL compute API headers from Khronos Group"
Andrew Geisslerbffdb3e2020-08-21 16:13:29 -05003LICENSE = "Apache-2.0"
4LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08005SECTION = "base"
6
7S = "${WORKDIR}/git"
Andrew Geissler78b72792022-06-14 06:47:25 -05008PV = "2022.05.18"
9SRCREV = "def8be9d35fda35492b72f54a94515f7df8d1e9f"
Andrew Geissler9aee5002022-03-30 16:27:02 +000010SRC_URI = "git://github.com/KhronosGroup/OpenCL-Headers.git;branch=main;protocol=https"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080011
12do_configure[noexec] = "1"
13do_compile[noexec] = "1"
Andrew Geissler9aee5002022-03-30 16:27:02 +000014ALLOW_EMPTY:${PN} = "1"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080015
16do_install () {
17 install -d ${D}${includedir}/CL/
18 install -m 0644 ${S}/CL/*.h ${D}${includedir}/CL
19}