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