testrpm_0.0.1.bb 454 B

123456789101112131415161718192021
  1. SUMMARY = "Test recipe for testing rpm generated by oe-core"
  2. LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
  3. LICENSE = "MIT"
  4. SRC_URI = "file://testfile.txt"
  5. INHIBIT_DEFAULT_DEPS = "1"
  6. S = "${WORKDIR}/sources"
  7. UNPACKDIR = "${S}"
  8. do_compile(){
  9. echo "testdata" > ${B}/"file with [brackets].txt"
  10. echo "testdata" > ${B}/"file with (parentheses).txt"
  11. }
  12. do_install(){
  13. install ${B}/* ${D}/
  14. }
  15. FILES:${PN} = "*"