libcapture-tiny-perl_0.48.bb 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. SUMMARY = "Capture::Tiny - Capture STDOUT and STDERR from Perl, XS or external programs."
  2. DESCRIPTION = "Capture::Tiny provies a simple, portable way to capture \
  3. almost anything sent to STDOUT or STDERR, regardless of whether it comes \
  4. from Perl, from XS code or from an external program. Optionally, output can \
  5. be teed so that it is captured while being passed through to the original \
  6. filehandles. Yes, it even works on Windows (usually). Stop guessing which of \
  7. a dozen capturing modules to use in any particular situation and just use \
  8. this one."
  9. SECTION = "libs"
  10. HOMEPAGE = "http://search.cpan.org/~dagolden/Capture-Tiny/"
  11. LICENSE = "Artistic-1.0 | GPL-1.0+"
  12. LIC_FILES_CHKSUM = "file://LICENSE;md5=37a4918a30ace24395020e5b8c03b83f"
  13. SRCNAME = "Capture-Tiny"
  14. SRC_URI = "${CPAN_MIRROR}/authors/id/D/DA/DAGOLDEN/${SRCNAME}-${PV}.tar.gz"
  15. SRC_URI[md5sum] = "f5d24083ad270f8326dd659dd83eeb54"
  16. SRC_URI[sha256sum] = "6c23113e87bad393308c90a207013e505f659274736638d8c79bac9c67cc3e19"
  17. S = "${WORKDIR}/${SRCNAME}-${PV}"
  18. inherit cpan ptest-perl
  19. RDEPENDS_${PN} = " \
  20. perl-module-carp \
  21. perl-module-exporter \
  22. perl-module-extutils-makemaker \
  23. perl-module-extutils-mm-unix \
  24. perl-module-file-spec \
  25. perl-module-file-temp \
  26. perl-module-io-handle \
  27. perl-module-lib \
  28. perl-module-overloading \
  29. perl-module-perlio \
  30. perl-module-perlio-scalar \
  31. perl-module-scalar-util \
  32. perl-module-strict \
  33. perl-module-test-more \
  34. perl-module-warnings \
  35. "
  36. RDEPENDS_${PN}-ptest += "perl-module-perlio"
  37. BBCLASSEXTEND = "native"