mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-16 18:40:03 +00:00
fc78d37ff0
Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
22 lines
674 B
BlitzBasic
22 lines
674 B
BlitzBasic
DESCRIPTION = "A modern, C++-native, header-only, test framework for unit-tests, \
|
|
TDD and BDD - using C++11, C++14, C++17 and later."
|
|
HOMEPAGE = "https://github.com/catchorg/Catch2"
|
|
LICENSE = "BSL-1.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=e4224ccaecb14d942c71d31bef20d78c"
|
|
|
|
SRC_URI = "git://github.com/catchorg/Catch2.git;branch=devel;protocol=https"
|
|
SRCREV = "2b60af89e23d28eefc081bc930831ee9d45ea58b"
|
|
|
|
|
|
inherit cmake python3native
|
|
|
|
do_install:append() {
|
|
rm ${D}${datadir}/Catch2/lldbinit
|
|
rm ${D}${datadir}/Catch2/gdbinit
|
|
rmdir ${D}${datadir}/Catch2/
|
|
}
|
|
|
|
# Header-only library
|
|
RDEPENDS:${PN}-dev = ""
|
|
RRECOMMENDS:${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})"
|