diff options
Diffstat (limited to 'meta-perl/recipes-perl/libcapture/libcapture-tiny-perl_0.50.bb')
-rw-r--r-- | meta-perl/recipes-perl/libcapture/libcapture-tiny-perl_0.50.bb | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/meta-perl/recipes-perl/libcapture/libcapture-tiny-perl_0.50.bb b/meta-perl/recipes-perl/libcapture/libcapture-tiny-perl_0.50.bb new file mode 100644 index 0000000000..efd78e20e2 --- /dev/null +++ b/meta-perl/recipes-perl/libcapture/libcapture-tiny-perl_0.50.bb | |||
@@ -0,0 +1,44 @@ | |||
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 | |||
11 | HOMEPAGE = "https://metacpan.org/dist/Capture-Tiny" | ||
12 | |||
13 | LICENSE = "Artistic-1.0 | GPL-1.0-or-later" | ||
14 | LIC_FILES_CHKSUM = "file://LICENSE;md5=dc7698cd2954eda44d2b50be647784f8" | ||
15 | |||
16 | SRCNAME = "Capture-Tiny" | ||
17 | SRC_URI = "${CPAN_MIRROR}/authors/id/D/DA/DAGOLDEN/${SRCNAME}-${PV}.tar.gz" | ||
18 | SRC_URI[sha256sum] = "ca6e8d7ce7471c2be54e1009f64c367d7ee233a2894cacf52ebe6f53b04e81e5" | ||
19 | |||
20 | S = "${UNPACKDIR}/${SRCNAME}-${PV}" | ||
21 | |||
22 | inherit cpan ptest-perl | ||
23 | |||
24 | RDEPENDS:${PN} = " \ | ||
25 | perl-module-carp \ | ||
26 | perl-module-exporter \ | ||
27 | perl-module-extutils-makemaker \ | ||
28 | perl-module-extutils-mm-unix \ | ||
29 | perl-module-file-spec \ | ||
30 | perl-module-file-temp \ | ||
31 | perl-module-io-handle \ | ||
32 | perl-module-lib \ | ||
33 | perl-module-overloading \ | ||
34 | perl-module-perlio \ | ||
35 | perl-module-perlio-scalar \ | ||
36 | perl-module-scalar-util \ | ||
37 | perl-module-strict \ | ||
38 | perl-module-test-more \ | ||
39 | perl-module-warnings \ | ||
40 | " | ||
41 | |||
42 | RDEPENDS:${PN}-ptest += "perl-module-perlio" | ||
43 | |||
44 | BBCLASSEXTEND = "native" | ||