From 35a52e4469ad8fd4b98174490d9dce7764982eb5 Mon Sep 17 00:00:00 2001 From: tobtoht Date: Mon, 26 Apr 2021 12:56:04 +0200 Subject: [PATCH] Dockerfile: add libzip --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Dockerfile b/Dockerfile index 1520660..36cc376 100644 --- a/Dockerfile +++ b/Dockerfile @@ -414,3 +414,10 @@ RUN mkdir linuxdeployqt && \ chmod +x linuxdeployqt-7-x86_64.AppImage && \ ./linuxdeployqt-7-x86_64.AppImage --appimage-extract && \ rm linuxdeployqt-7-x86_64.AppImage + +RUN git clone https://github.com/nih-at/libzip.git && \ + cd libzip && \ + git reset --hard 66e496489bdae81bfda8b0088172871d8fda0032 && \ + cmake -DBUILD_SHARED_LIBS=OFF -DCMAKE_INSTALL_PREFIX=/usr . && \ + make -j$THREADS && \ + make -j$THREADS install