From 80d159731cc44a4fa42d98ce8a8c155a91413e20 Mon Sep 17 00:00:00 2001 From: Dominik Chrastecky Date: Thu, 5 Sep 2019 19:54:47 +0200 Subject: [PATCH] drop icu dependency --- README.md | 2 -- build-static | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index ca97819..d270603 100644 --- a/README.md +++ b/README.md @@ -83,8 +83,6 @@ You need to have docker installed. Change into the cloned directory and: -- `git submodule init` -- `git submodule update` - `./configure-static` - `./build-static` diff --git a/build-static b/build-static index 36c7187..58ff0c5 100755 --- a/build-static +++ b/build-static @@ -1,3 +1,3 @@ #!/bin/sh -docker run --rm -it -v $(pwd):/app fffaraz/qt:static /bin/bash -c "cd /app/libgit && git submodule init && git submodule update && mkdir -p build && cd build && cmake -DBUILD_SHARED_LIBS=OFF -DBUILD_CLAR=OFF .. && cmake --build . && cd /app && qmake pwa-to-twa.pro && make" +docker run --rm -it -v $(pwd):/app rikudousage/qt-static:16.04 -c "cd /app/libgit && git submodule init && git submodule update && mkdir -p build && cd build && cmake -DBUILD_SHARED_LIBS=OFF -DBUILD_CLAR=OFF .. && cmake --build . && cd /app && qmake pwa-to-twa.pro && make"