summaryrefslogtreecommitdiffstats
path: root/recipes-oneapi/onedpl/onedpl_2022.8.0.bb
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-oneapi/onedpl/onedpl_2022.8.0.bb')
-rw-r--r--recipes-oneapi/onedpl/onedpl_2022.8.0.bb24
1 files changed, 24 insertions, 0 deletions
diff --git a/recipes-oneapi/onedpl/onedpl_2022.8.0.bb b/recipes-oneapi/onedpl/onedpl_2022.8.0.bb
new file mode 100644
index 00000000..9e2547a1
--- /dev/null
+++ b/recipes-oneapi/onedpl/onedpl_2022.8.0.bb
@@ -0,0 +1,24 @@
1SUMMARY = "oneAPI DPC++ Library (oneDPL)"
2DESCRIPTION = "The oneAPI DPC++ Library (oneDPL) aims to work with the \
3oneAPI DPC++ Compiler to provide high-productivity APIs to developers, \
4which can minimize DPC++ programming efforts across devices for high \
5performance parallel applications."
6HOMEPAGE = "https://github.com/oneapi-src/oneDPL"
7
8LICENSE = "Apache-2.0-with-LLVM-exception"
9LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2e982d844baa4df1c80de75470e0c5cb \
10 file://third-party-programs.txt;md5=409cd5c825a23043b6bb347861d34b35"
11
12SRC_URI = "git://github.com/uxlfoundation/oneDPL.git;protocol=https;branch=release/2022.8.0 \
13 "
14SRCREV = "89d8d8befd4da2cb52f3724f668d17d7e39d42cf"
15
16do_compile[noexec] = "1"
17do_configure[noexec] = "1"
18
19do_install() {
20 install -d -m 755 ${D}${includedir}/onedpl
21 cp -r ${S}/include/* ${D}${includedir}/onedpl
22}
23
24UPSTREAM_CHECK_GITTAGREGEX = "^oneDPL-(?P<pver>(\d+(\.\d+)+))-release$"