diff --git a/recipes-test/seco-yocto-testsuite/seco-yocto-testsuite.bb b/recipes-test/seco-yocto-testsuite/seco-yocto-testsuite.bb new file mode 100644 index 0000000000000000000000000000000000000000..480963a83e997451e4ac375de41de3af97a59d1a --- /dev/null +++ b/recipes-test/seco-yocto-testsuite/seco-yocto-testsuite.bb @@ -0,0 +1,29 @@ +SUMMARY = "SECO Yocto test suite" +DESCRITPTION = "Collection of scripts and small programms for various feature tests" +HOMEPAGE = "https://git.seco.com/seco-ne/tools/yocto-test-suite" + +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" + +SRCREV = "${AUTOREV}" +SRC_URI = " \ + git://git.seco.com/seco-ne/tools/yocto-test-suite.git;protocol=https;branch=main;nobranch=1 \ +" + +# Create a <tag>-<number of commits since tag>-<hash> Version string +inherit gitpkgv +PKGV = "${GITPKGVTAG}" + + +do_install () { + make install + mkdir -p ${D}/opt/yocto-testsuite + cp -rv out/* ${D}/opt/yocto-testsuite +} + +FILES:${PN} = " \ + /opt/yocto-testsuite/* \ +" + + +