Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 1 | SUMMARY = "HTML::TreeBuilder - Parser that builds a HTML syntax tree" |
| 2 | DESCRIPTION = "This distribution contains a suite of modules for representing, \ |
| 3 | creating, and extracting information from HTML syntax trees; there is \ |
| 4 | also relevent documentation. These modules used to be part of the \ |
| 5 | libwww-perl distribution, but are now unbundled in order to facilitate \ |
| 6 | a separate development track." |
| 7 | SECTION = "libs" |
| 8 | |
| 9 | HOMEPAGE = "http://www.cpan.org/authors/id/C/CJ/CJM/HTML-Tree-${PV}.readme" |
| 10 | |
| 11 | LICENSE = "Artistic-1.0 | GPL-1.0+" |
| 12 | LIC_FILES_CHKSUM = "file://LICENSE;md5=3eb57a8958cae73cb65e7d0c26339242" |
| 13 | |
| 14 | SRC_URI = "${CPAN_MIRROR}/authors/id/C/CJ/CJM/HTML-Tree-${PV}.tar.gz \ |
| 15 | file://bin-htmltree-fix-shebang.patch \ |
| 16 | " |
| 17 | SRC_URI[md5sum] = "d9271d60b872ed6fbe68b2d0fe8c450e" |
| 18 | SRC_URI[sha256sum] = "7d6d73fca622aa74855a8b088faa39454a0f91b7af83c9ec0387f01eefc2148f" |
| 19 | |
| 20 | S = "${WORKDIR}/HTML-Tree-${PV}" |
| 21 | |
| 22 | inherit cpan_build |
| 23 | |
Andrew Geissler | 97771a3 | 2021-03-05 15:23:11 -0600 | [diff] [blame] | 24 | export PERL_USE_UNSAFE_INC = "1" |
| 25 | |
Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 26 | DEPENDS += "libmodule-build-perl-native \ |
| 27 | " |
| 28 | |
| 29 | RPROVIDES_${PN} = " libhtml-element-perl \ |
Patrick Williams | ddad1a1 | 2017-02-23 20:36:32 -0600 | [diff] [blame] | 30 | libhtml-tree-assubs-perl \ |
| 31 | libhtml-tree-perl \ |
| 32 | libhtml-treebuilder-perl \ |
Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 33 | " |
| 34 | |
| 35 | RDEPENDS_${PN} = " perl-module-b \ |
Patrick Williams | ddad1a1 | 2017-02-23 20:36:32 -0600 | [diff] [blame] | 36 | perl-module-base \ |
| 37 | perl-module-strict \ |
| 38 | perl-module-warnings \ |
| 39 | perl-module-exporter \ |
| 40 | perl-module-carp \ |
Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 41 | " |
| 42 | |
| 43 | BBCLASSEXTEND = "native" |
| 44 | |