blob: 9a814de2338813ffe1066aa7187f12ad8aa642f6 [file] [log] [blame]
Brad Bishop0f291cc2019-09-01 15:16:57 -04001SUMMARY = "Light-weight C++ XML Processing Library"
2DESCRIPTION = "pugixml is a C++ XML processing library, which consists of a \
3DOM-like interface with rich traversal/modification capabilities, \
4an extremely fast XML parser which constructs the DOM tree from \
5n XML file/buffer, and an XPath 1.0 implementation for complex \
6data-driven tree queries."
7HOMPAGE = "https://pugixml.org/"
8
9LICENSE = "MIT"
Brad Bishop87b3cb82019-11-15 16:35:37 -050010LIC_FILES_CHKSUM = "file://readme.txt;beginline=29;endline=52;md5=d5ee91fb74cbb64223b3693fd64eb169"
Brad Bishop0f291cc2019-09-01 15:16:57 -040011
12SRC_URI = "https://github.com/zeux/${BPN}/releases/download/v${PV}/${BP}.tar.gz"
Brad Bishop87b3cb82019-11-15 16:35:37 -050013SRC_URI[md5sum] = "f97237e9908201c6d8536210747b66af"
14SRC_URI[sha256sum] = "55f399fbb470942410d348584dc953bcaec926415d3462f471ef350f29b5870a"
Brad Bishop0f291cc2019-09-01 15:16:57 -040015
Andrew Geissler82c905d2020-04-13 13:39:40 -050016UPSTREAM_CHECK_URI = "https://github.com/zeux/${BPN}/releases"
17
Brad Bishop0f291cc2019-09-01 15:16:57 -040018inherit cmake
19
Andrew Geissler7f40b712020-05-15 14:09:53 -050020EXTRA_OECMAKE += "-DBUILD_PKGCONFIG=ON \
21 -DBUILD_SHARED_LIBS=ON \
Brad Bishop0f291cc2019-09-01 15:16:57 -040022 -DCMAKE_BUILD_TYPE=Release \
23 "
Andrew Geissler7f40b712020-05-15 14:09:53 -050024
25BBCLASSEXTEND = "native nativesdk"