mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-10-22 15:03:59 +02:00

5.06 2017-04-28 Release by Kent Fredric * Revert XML escaping changes from 5.04 due to large numbers of broken dependents - RT#121310 https://rt.cpan.org/Ticket/Display.html?id=121310 - https://github.com/rjbs/MasonX-Resolver-WidgetFactory/issues/1 - https://github.com/kentfredric/HTML-Tree/issues/1 Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
51 lines
1.5 KiB
BlitzBasic
51 lines
1.5 KiB
BlitzBasic
SUMMARY = "HTML::TreeBuilder - Parser that builds a HTML syntax tree"
|
|
DESCRIPTION = "This distribution contains a suite of modules for representing, \
|
|
creating, and extracting information from HTML syntax trees; there is \
|
|
also relevent documentation. These modules used to be part of the \
|
|
libwww-perl distribution, but are now unbundled in order to facilitate \
|
|
a separate development track."
|
|
SECTION = "libs"
|
|
|
|
HOMEPAGE = "https://metacpan.org/release/KENTNL/HTML-Tree-5.06/source/README"
|
|
|
|
LICENSE = "Artistic-1.0 | GPL-1.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://README;beginline=88;endline=105;md5=260d31d31370658947ae050eef27aca9"
|
|
|
|
SRC_URI = "${CPAN_MIRROR}/authors/id/K/KE/KENTNL/HTML-Tree-${PV}.tar.gz \
|
|
file://bin-htmltree-fix-shebang.patch \
|
|
"
|
|
SRC_URI[sha256sum] = "9c36eb19cbdf9a5906c858948ca51c35bd7561f52cc18c43281acbe57327536e"
|
|
|
|
S = "${UNPACKDIR}/HTML-Tree-${PV}"
|
|
|
|
inherit cpan_build
|
|
|
|
export PERL_USE_UNSAFE_INC = "1"
|
|
|
|
DEPENDS += "libmodule-build-perl-native \
|
|
"
|
|
|
|
do_install:append() {
|
|
sed -i \
|
|
-e 's|${TMPDIR}||g' \
|
|
`find ${D}/usr/share/doc/perl/html/site/lib/HTML/ -type f` \
|
|
`find ${D}/usr/lib/perl5 -type f -name .packlist`
|
|
}
|
|
|
|
RPROVIDES:${PN} = " libhtml-element-perl \
|
|
libhtml-tree-assubs-perl \
|
|
libhtml-tree-perl \
|
|
libhtml-treebuilder-perl \
|
|
"
|
|
|
|
RDEPENDS:${PN} = " perl-module-b \
|
|
perl-module-base \
|
|
perl-module-strict \
|
|
perl-module-warnings \
|
|
perl-module-exporter \
|
|
perl-module-carp \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native"
|
|
|