# HG changeset patch # User Hans-G?nter Theisgen # Date 1656603603 -3600 # Node ID ef0fdee3b091e5c2bdb4aeab495a59acb41f4e7a # Parent 7d53ff17b95a383122110915860a4e7649e06a24 updated pugixml (1.10 -> 1.12.1) diff -r 7d53ff17b95a -r ef0fdee3b091 pugixml/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pugixml/description.txt Thu Jun 30 16:40:03 2022 +0100 @@ -0,0 +1,10 @@ +pugixml is a light-weight C++ XML processing library. + +It features: + +- DOM-like interface with rich traversal/modification capabilities +- Extremely fast non-validating XML parser which constructs the DOM + tree from an XML file/buffer +- XPath 1.0 implementation for complex data-driven tree queries +- Full Unicode support with Unicode interface variants and automatic + encoding conversions diff -r 7d53ff17b95a -r ef0fdee3b091 pugixml/receipt --- a/pugixml/receipt Thu Jun 30 15:51:09 2022 +0100 +++ b/pugixml/receipt Thu Jun 30 16:40:03 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="pugixml" -VERSION="1.10" +VERSION="1.12.1" CATEGORY="misc" SHORT_DESC="Light-weight, simple and fast XML parser for C++ with XPath support." MAINTAINER="pascal.bellard@slitaz.org" @@ -23,11 +23,12 @@ # Rules to configure and make the package. compile_rules() { - mkdir build && - cd build && - cmake .. -DCMAKE_INSTALL_PREFIX=/usr && + mkdir _build && + cd _build && + cmake .. \ + -D CMAKE_INSTALL_PREFIX=/usr && make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg.