zziplib-0.13.78

This commit is contained in:
uglyside
2024-10-24 17:56:14 +03:00
parent aa0218c172
commit 359d8a23b8
2 changed files with 18 additions and 14 deletions
+7 -11
View File
@@ -4,28 +4,24 @@
# Licensed under the GNU General Public License, version 3. # Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt # See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import shelltools
from pisi.actionsapi import cmaketools from pisi.actionsapi import cmaketools
from pisi.actionsapi import mesontools
from pisi.actionsapi import pisitools from pisi.actionsapi import pisitools
from pisi.actionsapi import get
shelltools.export("JOBS", get.makeJOBS().replace("-j5", "-j1"))
j = ''.join([ j = ''.join([
'-DCMAKE_BUILD_TYPE=Release ', ' -DCMAKE_BUILD_TYPE=Release',
'-DCMAKE_INSTALL_LIBDIR=lib ', ' -DCMAKE_INSTALL_LIBDIR=lib',
' -Bbuild -G Ninja -L '
]) ])
def setup(): def setup():
shelltools.makedirs("build") cmaketools.configure(j)
shelltools.cd("build")
cmaketools.configure("%s -G Ninja -L" % j, sourceDir = '..')
def build(): def build():
shelltools.system("ninja -C build") mesontools.build()
def install(): def install():
shelltools.system("DESTDIR=%s ninja -C build install" % get.installDIR()) mesontools.install()
pisitools.dodoc("ChangeLog", "COPYING.LIB", "README", "TODO", "docs/COPYING*", "docs/README.SDL") pisitools.dodoc("ChangeLog", "COPYING.LIB", "README", "TODO", "docs/COPYING*", "docs/README.SDL")
+11 -3
View File
@@ -18,8 +18,8 @@
<Description> <Description>
The ZZIPlib provides read access on ZIP-archives and unpacked data. It features an additional simplified API following the standard Posix API for file access. The ZZIPlib provides read access on ZIP-archives and unpacked data. It features an additional simplified API following the standard Posix API for file access.
</Description> </Description>
<Archive sha1sum="330cab1c477196d2d26d30d5f4cb031647fd4597" type="targz"> <Archive sha1sum="a48917744eefc5c31d9e5d66352b847d675686c9" type="targz">
https://github.com/gdraheim/zziplib/archive/v0.13.72.tar.gz https://github.com/gdraheim/zziplib/archive/v0.13.78/zziplib-0.13.78.tar.gz
</Archive> </Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>cmake</Dependency> <Dependency>cmake</Dependency>
@@ -62,12 +62,20 @@
</RuntimeDependencies> </RuntimeDependencies>
<Files> <Files>
<Path fileType="header">/usr/include</Path> <Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path> <Path fileType="data">/usr/lib/cmake</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="data">/usr/share/aclocal</Path> <Path fileType="data">/usr/share/aclocal</Path>
</Files> </Files>
</Package> </Package>
<History> <History>
<Update release="8">
<Date>2024-10-24</Date>
<Version>0.13.78</Version>
<Comment>Rebuild</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="7"> <Update release="7">
<Date>2023-11-04</Date> <Date>2023-11-04</Date>
<Version>0.13.72</Version> <Version>0.13.72</Version>