edk2-test-parser-native.bb 788 B

1234567891011121314151617181920212223242526
  1. SUMMARY = "EDK2 Test Parser"
  2. DESCRIPTION = "EDK2 Test Parser for parsing the results of UEFI SCT tests"
  3. HOMEPAGE = "https://gitlab.arm.com/systemready/edk2-test-parser"
  4. inherit native
  5. LICENSE = "BSD-2-Clause"
  6. LIC_FILES_CHKSUM = "file://LICENSE;md5=c0550be4b3b9c0223efd0eaa70dc9085"
  7. RDEPENDS:${PN} = "python3-packaging-native python3-pyyaml-native \
  8. python3-jsonschema-native"
  9. PV = "v2023.04"
  10. S = "${WORKDIR}/git"
  11. SRC_URI = "git://git.gitlab.arm.com/systemready/edk2-test-parser.git;protocol=https;nobranch=1"
  12. # The SRCREV is at the v2023.04 tag
  13. SRCREV = "e8cdb692592d2a152cb87cf4d9fbd7ba2ae8b405"
  14. do_install() {
  15. install -d ${D}/${libdir}/edk2_test_parser
  16. cp -r ${S}/* ${D}/${libdir}/edk2_test_parser
  17. }
  18. do_configure[noexec] = "1"
  19. do_compile[noexec] = "1"