diff --git a/util/archive/zziplib/actions.py b/util/archive/zziplib/actions.py index d32d7d5a85..e834745a4e 100644 --- a/util/archive/zziplib/actions.py +++ b/util/archive/zziplib/actions.py @@ -5,25 +5,27 @@ # See the file https://www.gnu.org/licenses/gpl-3.0.txt from pisi.actionsapi import shelltools -from pisi.actionsapi import autotools +from pisi.actionsapi import cmaketools from pisi.actionsapi import pisitools from pisi.actionsapi import get +shelltools.export("JOBS", get.makeJOBS().replace("-j5", "-j1")) + def setup(): -# autotools.autoreconf("-vif") - autotools.configure("--disable-static --enable-sdl --with-zlib") + shelltools.makedirs("build") + shelltools.cd("build") + cmaketools.configure("-DCMAKE_INSTALL_LIBDIR=lib -L", sourceDir = '..') def build(): - autotools.make() + shelltools.cd("build") + cmaketools.make() + cmaketools.make("docs") def install(): - autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - - # Extract and install shipped man pages - #shelltools.system("tar xvf docs/zziplib-manpages.tar") - for manp in shelltools.ls("man3"): - pisitools.doman("man3/%s" % manp) + shelltools.cd("build") + cmaketools.rawInstall("DESTDIR=%s" % get.installDIR()) pisitools.dohtml("docs/*.htm*") + shelltools.cd("..") pisitools.dodoc("ChangeLog", "COPYING.LIB", "README", "TODO", "docs/COPYING*", "docs/README.SDL") diff --git a/util/archive/zziplib/pspec.xml b/util/archive/zziplib/pspec.xml index 297a9c6394..7f379265e1 100644 --- a/util/archive/zziplib/pspec.xml +++ b/util/archive/zziplib/pspec.xml @@ -1,5 +1,5 @@ - + zziplib @@ -13,20 +13,27 @@ ZLIB app:console library - libZ-based ZIP-access Library + util.archive + libZ-based ZIP-access Library. - zziplib provides read access to zipped files in a zip-archive, using compression based solely on free algorithms provided by zlib. + 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. - https://sourceforge.net/projects/zziplib/files/zziplib13/0.13.68/zziplib-0.13.68.tar.bz2 + + https://github.com/gdraheim/zziplib/archive/v0.13.71.tar.gz + - libsdl-devel + cmake + python3 + libxslt zlib-devel + aalib-devel + docbook-xsl + docbook-xml + libsdl-devel + libsdl2-devel - + @@ -39,6 +46,7 @@ /usr/bin /usr/lib /usr/share/aclocal + /usr/share/man/man3 @@ -48,11 +56,11 @@ zziplib libsdl-devel + libsdl2-devel /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 + /usr/lib/pkgconfig @@ -68,6 +76,13 @@ + + 2020-06-23 + 0.13.71 + Ver. bump + fury + wascheme@tuta.io + 2019-10-31 0.13.68