Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/client_theming.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 6 insertions, 7 deletions
diff --git a/README.md b/README.md
index 8feb78f..cc066a5 100644
--- a/README.md
+++ b/README.md
@@ -150,16 +150,15 @@ sudo make install
### Compile Qt
-Because the desktop client comes with some custom patches you have to download the Qt 5.6.2 source and then apply all of them. Make sure to adjust <client> with the login to the cloned client repository.
+Download and compile Qt 5.9.2 source. Unfortunately the Qt patches don't apply anymore,
+so we just ignore them for the time being.
```bash
cd /tmp/
-wget http://download.qt.io/official_releases/qt/5.6/5.6.2/single/qt-everywhere-opensource-src-5.6.2.tar.gz
-tar -xf qt-everywhere-opensource-src-5.6.2.tar.gz
-cd /tmp/qt-everywhere-opensource-src-5.6.2/qtbase
-git apply <client>/admin/qt/patches/qtbase/*.patch
-cd ..
-./configure -sdk macosx10.9 -openssl -openssl-linked
+wget http://download.qt.io/official_releases/qt/5.9/5.9.2/single/qt-everywhere-opensource-src-5.9.2.tar.xz
+tar -xjf qt-everywhere-opensource-src-5.9.2.tar.xz
+cd /tmp/qt-everywhere-opensource-src-5.9.2
+./configure -sdk macosx10.11 -openssl -openssl-linked -I /usr/local/opt/openssl/include/ -L /usr/local/opt/openssl/lib/
make -j2
sudo make -j1 install
```