diff options
-rw-r--r-- | meta-perl/recipes-perl/libhtml/libhtml-tagset-perl_3.20.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-perl/recipes-perl/libhtml/libhtml-tagset-perl_3.20.bb b/meta-perl/recipes-perl/libhtml/libhtml-tagset-perl_3.20.bb new file mode 100644 index 0000000000..d6483cc5fc --- /dev/null +++ b/meta-perl/recipes-perl/libhtml/libhtml-tagset-perl_3.20.bb | |||
@@ -0,0 +1,29 @@ | |||
1 | SUMMARY = "HTML::Tageset - data tables useful in parsing HTML" | ||
2 | DESCRIPTION = "This module contains several data tables useful in various \ | ||
3 | kinds of HTML parsing operations." | ||
4 | HOMEPAGE = "https://metacpan.org/release/HTML-Tagset" | ||
5 | SECTION = "libs" | ||
6 | LICENSE = "Artistic-1.0 | GPL-1.0+" | ||
7 | |||
8 | LIC_FILES_CHKSUM = "file://README;beginline=62;endline=66;md5=aa91eed6adfe182d2af676954f06a7c9" | ||
9 | |||
10 | SRC_URI = "${CPAN_MIRROR}/authors/id/P/PE/PETDANCE/HTML-Tagset-${PV}.tar.gz" | ||
11 | SRC_URI[md5sum] = "d2bfa18fe1904df7f683e96611e87437" | ||
12 | SRC_URI[sha256sum] = "adb17dac9e36cd011f5243881c9739417fd102fce760f8de4e9be4c7131108e2" | ||
13 | |||
14 | S = "${WORKDIR}/HTML-Tagset-${PV}" | ||
15 | |||
16 | |||
17 | inherit cpan ptest-perl | ||
18 | |||
19 | |||
20 | RDEPENDS_${PN} += "perl-module-strict perl-module-vars" | ||
21 | |||
22 | RDEPENDS_${PN}-ptest += "perl-module-test" | ||
23 | |||
24 | do_install_prepend() { | ||
25 | # requires "-T" (taint) command line option | ||
26 | rm -rf ${B}/t/pod.t | ||
27 | } | ||
28 | |||
29 | BBCLASSEXTEND = "native" | ||