ptest-runner_2.2.bb 715 B

1234567891011121314151617181920212223242526
  1. SUMMARY = "A C program to run all installed ptests"
  2. DESCRIPTION = "The ptest-runner2 package installs a ptest-runner \
  3. program which loops through all installed ptest test suites and \
  4. runs them in sequence."
  5. HOMEPAGE = "http://git.yoctoproject.org/cgit/cgit.cgi/ptest-runner2/about/"
  6. LICENSE = "GPLv2"
  7. LIC_FILES_CHKSUM = "file://LICENSE;md5=751419260aa954499f7abaabaa882bbe"
  8. SRCREV = "49956f65bb53ea2a2c1b394e5e59ffdfcdcc490f"
  9. PV = "2.2+git${SRCPV}"
  10. SRC_URI = "git://git.yoctoproject.org/ptest-runner2"
  11. S = "${WORKDIR}/git"
  12. FILES_${PN} = "${bindir}/ptest-runner"
  13. EXTRA_OEMAKE = "-e MAKEFLAGS="
  14. do_compile () {
  15. oe_runmake
  16. }
  17. do_install () {
  18. install -D -m 0755 ${S}/ptest-runner ${D}${bindir}/ptest-runner
  19. }