summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/function2/function2_4.2.2.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2022-10-31 16:39:45 +0800
committerKhem Raj <raj.khem@gmail.com>2022-10-31 08:27:33 -0700
commit30444c8a59f6adb050349ae069d176db83c54d3a (patch)
tree37b8ac151e328cedfd85cf376464e811aa297c92 /meta-oe/recipes-support/function2/function2_4.2.2.bb
parentaa5ea92a4a61ccec3e01c1db225adce0ddc745dd (diff)
downloadmeta-openembedded-30444c8a59f6adb050349ae069d176db83c54d3a.tar.gz
function2: upgrade 4.2.1 -> 4.2.2
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/function2/function2_4.2.2.bb')
-rw-r--r--meta-oe/recipes-support/function2/function2_4.2.2.bb21
1 files changed, 21 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/function2/function2_4.2.2.bb b/meta-oe/recipes-support/function2/function2_4.2.2.bb
new file mode 100644
index 0000000000..31cd077d91
--- /dev/null
+++ b/meta-oe/recipes-support/function2/function2_4.2.2.bb
@@ -0,0 +1,21 @@
1SUMMARY = "Improved drop-in replacement for std::function"
2DESCRIPTION = "Provides improved implementations of std::function."
3HOMEPAGE = "https://naios.github.io/function2"
4LICENSE = "BSL-1.0"
5LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=e4224ccaecb14d942c71d31bef20d78c"
6SRCREV = "2d3a878ef19dd5d2fb188898513610fac0a48621"
7PV .= "+git${SRCPV}"
8
9SRC_URI += "gitsm://github.com/Naios/function2;branch=master;protocol=https"
10
11S = "${WORKDIR}/git"
12
13inherit cmake
14inherit ptest
15
16# Installs some data to incorrect top-level /usr directory
17do_install:append() {
18 mkdir -p ${D}/${datadir}/function2
19 mv ${D}/${prefix}/Readme.md ${D}/${datadir}/function2/
20 mv ${D}/${prefix}/LICENSE.txt ${D}/${datadir}/function2/
21}