libxml-simple-perl_2.25.bb 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. SUMMARY = "Perl module for reading and writing XML"
  2. DESCRIPTION = "The XML::Simple Perl module provides a simple API layer \
  3. on top of an underlying XML parsing module to maintain XML files \
  4. (especially configuration files). It is a blunt rewrite of XML::Simple \
  5. (by Grant McLean) to use the XML::LibXML parser for XML structures, \
  6. where the original uses plain Perl or SAX parsers."
  7. HOMEPAGE = "http://search.cpan.org/~markov/XML-LibXML-Simple-0.93/lib/XML/LibXML/Simple.pod"
  8. SECTION = "libs"
  9. LICENSE = "Artistic-1.0 | GPL-1.0+"
  10. LIC_FILES_CHKSUM = "file://LICENSE;md5=cf206df8c9fe775f1d4c484386491eac"
  11. DEPENDS += "libxml-parser-perl"
  12. SRC_URI = "http://www.cpan.org/modules/by-module/XML/XML-Simple-${PV}.tar.gz"
  13. SRC_URI[md5sum] = "bb841dce889a26c89a1c2739970e9fbc"
  14. SRC_URI[sha256sum] = "531fddaebea2416743eb5c4fdfab028f502123d9a220405a4100e68fc480dbf8"
  15. S = "${WORKDIR}/XML-Simple-${PV}"
  16. EXTRA_PERLFLAGS = "-I ${PERLHOSTLIB}"
  17. inherit cpan ptest-perl
  18. RDEPENDS_${PN} += " \
  19. libxml-namespacesupport-perl \
  20. libxml-parser-perl \
  21. libxml-sax-perl \
  22. "
  23. RDEPENDS_${PN}-ptest += " \
  24. perl-module-file-temp \
  25. perl-module-test-more \
  26. "
  27. BBCLASSEXTEND = "native"