pugixml_1.11.2.bb 997 B

12345678910111213141516171819202122232425
  1. SUMMARY = "Light-weight C++ XML Processing Library"
  2. DESCRIPTION = "pugixml is a C++ XML processing library, which consists of a \
  3. DOM-like interface with rich traversal/modification capabilities, \
  4. an extremely fast XML parser which constructs the DOM tree from \
  5. n XML file/buffer, and an XPath 1.0 implementation for complex \
  6. data-driven tree queries."
  7. HOMEPAGE = "https://pugixml.org/"
  8. LICENSE = "MIT"
  9. LIC_FILES_CHKSUM = "file://readme.txt;beginline=29;endline=52;md5=d5ee91fb74cbb64223b3693fd64eb169"
  10. SRC_URI = "https://github.com/zeux/${BPN}/releases/download/v${PV}/${BP}.tar.gz"
  11. SRC_URI[md5sum] = "2d0be30b843eb9d1893c1ba9ad334946"
  12. SRC_URI[sha256sum] = "599eabdf8976aad86ac092a198920d8c127623d1376842bc6d683b12a37fb74f"
  13. UPSTREAM_CHECK_URI = "https://github.com/zeux/${BPN}/releases"
  14. inherit cmake
  15. EXTRA_OECMAKE += "-DBUILD_PKGCONFIG=ON \
  16. -DBUILD_SHARED_LIBS=ON \
  17. -DCMAKE_BUILD_TYPE=Release \
  18. "
  19. BBCLASSEXTEND = "native nativesdk"