From e6f512788b774ce3638903882a7b11b1e6454f98 Mon Sep 17 00:00:00 2001 From: tobtoht Date: Mon, 26 Apr 2021 13:01:17 +0200 Subject: [PATCH] Dockerfile.windows: add libzip --- Dockerfile.windows | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Dockerfile.windows b/Dockerfile.windows index 7bd38b5..da29f88 100644 --- a/Dockerfile.windows +++ b/Dockerfile.windows @@ -180,3 +180,13 @@ RUN git clone https://git.featherwallet.org/feather/monero-seed.git && \ make -Cbuild -j$THREADS && \ make -Cbuild install && \ rm -rf $(pwd) + +RUN git clone https://github.com/nih-at/libzip.git && \ + cd libzip && \ + git reset --hard 66e496489bdae81bfda8b0088172871d8fda0032 && \ + cmake -DCMAKE_INSTALL_PREFIX=/depends/x86_64-w64-mingw32 \ + -DCMAKE_TOOLCHAIN_FILE=/depends/x86_64-w64-mingw32/share/toolchain.cmake \ + -DBUILD_SHARED_LIBS=OFF \ + -DCMAKE_PREFIX_PATH=/usr/x86_64-w64-mingw32 && \ + make -j$THREADS && \ + make -j$THREADS install \ No newline at end of file