pugyxml v1.15

This commit is contained in:
uglyside
2025-06-21 15:36:07 +03:00
parent f603a6b32b
commit c0152d4f43
2 changed files with 30 additions and 26 deletions
+5 -10
View File
@@ -1,17 +1,14 @@
#!/usr/bin/python #!/usr/bin/python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3. # Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/gpl.txt # See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import cmaketools from pisi.actionsapi import cmaketools, pisitools, get
from pisi.actionsapi import get
from pisi.actionsapi import shelltools
#WorkDir = "pugixml-1.8/scripts"
def setup(): def setup():
cmaketools.configure("-DCMAKE_INSTALL_LIBDIR=lib \ cmaketools.configure("-DCMAKE_INSTALL_LIBDIR=lib \
-DBUILD_SHARED_LIBS=ON") -DBUILD_SHARED_LIBS=ON")
def build(): def build():
cmaketools.make() cmaketools.make()
@@ -19,6 +16,4 @@ def build():
def install(): def install():
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR()) cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
# pisitools.dodoc("AUTHORS", "BUGS", "ChangeLog", "COPYING", "README") pisitools.dodoc("LICENSE.md")
+15 -6
View File
@@ -1,20 +1,20 @@
<?xml version="1.0" ?> <?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd"> <!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI> <PISI>
<Source> <Source>
<Name>pugixml</Name> <Name>pugixml</Name>
<Homepage>http://pugixml.org</Homepage> <Homepage>https://pugixml.org/</Homepage>
<Packager> <Packager>
<Name>Stefan Gronewold</Name> <Name>PisiLinux Community</Name>
<Email>groni@pisilinux.org</Email> <Email>admins@pisilinux.org</Email>
</Packager> </Packager>
<License>MIT</License> <License>MIT</License>
<Summary>Light-weight, simple and fast XML parser for C++ with XPath support</Summary> <Summary>Light-weight, simple and fast XML parser for C++ with XPath support</Summary>
<Description>Light-weight, simple and fast XML parser for C++ with XPath support</Description> <Description>Light-weight, simple and fast XML parser for C++ with XPath support</Description>
<Archive sha1sum="906f1038f0687ce6466687eaa9b457af3c7e3382" type="targz">https://github.com/zeux/pugixml/releases/download/v1.15/pugixml-1.15.tar.gz</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>cmake</Dependency> <Dependency>cmake</Dependency>
</BuildDependencies> </BuildDependencies>
<Archive sha1sum="c82dd9589ff56c978ecdb5c8ce55989697b08618" type="targz">https://github.com/zeux/pugixml/archive/v1.11.4.tar.gz</Archive>
</Source> </Source>
<Package> <Package>
@@ -24,22 +24,31 @@
</RuntimeDependencies> </RuntimeDependencies>
<Files> <Files>
<Path fileType="library">/usr/lib</Path> <Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
</Files> </Files>
</Package> </Package>
<Package> <Package>
<Name>pugixml-devel</Name> <Name>pugixml-devel</Name>
<Summary>Development header for pugixml</Summary> <Summary>Development header for pugixml</Summary>
<RuntimeDependencies> <RuntimeDependencies>
<Dependency release="current">pugixml</Dependency> <Dependency release="current">pugixml</Dependency>
</RuntimeDependencies> </RuntimeDependencies>
<Files> <Files>
<Path fileType="header">/usr/include</Path> <Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/cmake</Path> <Path fileType="data">/usr/lib/cmake</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files> </Files>
</Package> </Package>
<History> <History>
<Update release="6">
<Date>2025-06-21</Date>
<Version>1.15</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="5"> <Update release="5">
<Date>2021-03-10</Date> <Date>2021-03-10</Date>
<Version>1.11.4</Version> <Version>1.11.4</Version>