python3-dtschema-wrapper_2021.10.bb 619 B

12345678910111213141516171819
  1. SUMMARY = "Wrapper for tooling for devicetree validation using YAML and jsonschema"
  2. HOMEPAGE = "https://yoctoproject.org"
  3. LICENSE = "MIT"
  4. LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
  5. SRC_URI = "file://dt-doc-validate \
  6. file://dt-mk-schema \
  7. file://dt-validate"
  8. S = "${UNPACKDIR}"
  9. do_install() {
  10. install -d ${D}${bindir}/
  11. install -m 755 ${UNPACKDIR}/dt-doc-validate ${D}${bindir}/
  12. install -m 755 ${UNPACKDIR}/dt-mk-schema ${D}${bindir}/
  13. install -m 755 ${UNPACKDIR}/dt-validate ${D}${bindir}/
  14. }
  15. BBCLASSEXTEND = "native nativesdk"