diff options
author | Roy Li <rongqing.li@windriver.com> | 2014-07-30 10:19:27 +0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-08-01 14:23:46 +0200 |
commit | 9ee63821708901d535b87d28042b512bd1a67eca (patch) | |
tree | 2a4ac8cf40e3681433d2a9620011cc20426e2760 /meta-perl/recipes-perl | |
parent | 0e9aae3e6b058670f47523861a2375e736f17321 (diff) | |
download | meta-openembedded-9ee63821708901d535b87d28042b512bd1a67eca.tar.gz |
libxml-filter-buffertext-perl: add recipe
Signed-off-by: Roy Li <rongqing.li@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-perl/recipes-perl')
-rw-r--r-- | meta-perl/recipes-perl/libxml/libxml-filter-buffertext-perl_1.01.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-perl/recipes-perl/libxml/libxml-filter-buffertext-perl_1.01.bb b/meta-perl/recipes-perl/libxml/libxml-filter-buffertext-perl_1.01.bb new file mode 100644 index 000000000..77dd616bf --- /dev/null +++ b/meta-perl/recipes-perl/libxml/libxml-filter-buffertext-perl_1.01.bb | |||
@@ -0,0 +1,25 @@ | |||
1 | SUMMARY = "XML::Filter::BufferText - Filter to put all characters() in one event" | ||
2 | DESCRIPTION = "\ | ||
3 | The XML::Filter::BufferText module is a very simple filter. One common \ | ||
4 | cause of grief (and programmer error) is that XML parsers aren't required \ | ||
5 | to provide character events in one chunk. They can, but are not forced \ | ||
6 | to, and most don't. This filter does the trivial but oft-repeated task \ | ||
7 | of putting all characters into a single event. \ | ||
8 | " | ||
9 | SECTION = "libs" | ||
10 | LICENSE = "Artistic-1.0 | GPLv1+" | ||
11 | HOMEPAGE = "http://search.cpan.org/dist/XML-Filter-BufferText/" | ||
12 | DEPENDS += "libxml-sax-perl-native" | ||
13 | RDEPENDS_${PN} += "libxml-sax-perl" | ||
14 | |||
15 | SRC_URI = "http://search.cpan.org/CPAN/authors/id/R/RB/RBERJON/XML-Filter-BufferText-${PV}.tar.gz" | ||
16 | SRC_URI[md5sum] = "2992c0387632583b966ab9c965b25512" | ||
17 | SRC_URI[sha256sum] = "8fd2126d3beec554df852919f4739e689202cbba6a17506e9b66ea165841a75c" | ||
18 | |||
19 | LIC_FILES_CHKSUM = "file://BufferText.pm;beginline=88;endline=90;md5=497aa6d79cc84c3d769a2a0016bee928" | ||
20 | |||
21 | S = "${WORKDIR}/XML-Filter-BufferText-${PV}" | ||
22 | |||
23 | inherit cpan | ||
24 | |||
25 | BBCLASSEXTEND = "native" | ||