blob: b5e63cd356f7ff220b9f0318ad225dfe7ea4567a [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."
Andrew Geisslereafcbb82020-06-05 17:59:17 -05007HOMEPAGE = "https://pugixml.org/"
Brad Bishop0f291cc2019-09-01 15:16:57 -04008
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"
Andrew Geissler8fc454f2020-12-11 16:27:59 -060013SRC_URI[md5sum] = "93540f4644fd4e4b02049554ef37fb90"
14SRC_URI[sha256sum] = "26913d3e63b9c07431401cf826df17ed832a20d19333d043991e611d23beaa2c"
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"