blob: b6c1ac56ba4b7c6b3350bb0754f235939228f8b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
DESCRIPTION = "A command line parser for C++11 and beyond that provides a rich feature set with a simple and intuitive interface."
HOMEPAGE = "https://github.com/CLIUtils/CLI11"
LICENSE = "BSD-3-Clause"
LIC_FILES_CHKSUM = "file://LICENSE;md5=27559a6fd853c4b46ec4dea16597460c"
DEPENDS = "catch2"
SRC_URI = "gitsm://github.com/CLIUtils/CLI11;branch=main;protocol=https;tag=v${PV} \
file://remove_tmpdir_from_test_binary.patch \
file://run-ptest"
SRCREV = "bfffd37e1f804ca4fae1caae106935791696b6a9"
inherit cmake ptest
# cli11 is a header only C++ library, so the main package will be empty.
RDEPENDS:${PN}-dev = ""
RDEPENDS:${PN}-ptest = ""
do_install_ptest(){
# double tests is not a typo. The inner empty tests folder is
# used by one the tests.
install -d ${D}${PTEST_PATH}/tests/tests
for t in `ls ${B}/tests/*Test`; do
install $t ${D}${PTEST_PATH}/tests/
done
install ${B}/tests/ensure_utf8 ${D}${PTEST_PATH}/tests/
install ${B}/tests/ensure_utf8_twice ${D}${PTEST_PATH}/tests/
install ${B}/tests/link_test_2 ${D}${PTEST_PATH}/tests/
}
BBCLASSEXTEND = "native nativesdk"
|