From 3e9b63c97543c420987e68ae9b0522ab94ae195c Mon Sep 17 00:00:00 2001 From: nonlinear-chaos-order-etc <19966907+nonlinear-chaos-order-etc@users.noreply.github.com> Date: Sun, 22 Sep 2019 15:46:45 +0800 Subject: [PATCH 1/3] re: #1422 --- docs/devs/building/qt-desktop-gui.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/devs/building/qt-desktop-gui.md b/docs/devs/building/qt-desktop-gui.md index 4401fbe..7a2e61e 100644 --- a/docs/devs/building/qt-desktop-gui.md +++ b/docs/devs/building/qt-desktop-gui.md @@ -41,7 +41,7 @@ TBD ### Without Qt Creator ``` -sudo apt-get install build-essential g++ make libcrypto++-dev libssl-dev libboost-all-dev libminiupnpc-dev libwebsocketpp-dev qt5-default libqt5gui5 git +sudo apt-get install build-essential g++ make libcrypto++-dev libssl-dev libboost-all-dev libminiupnpc-dev libwebsocketpp-dev qt5-default libqt5gui5 git zlib1g-dev mkdir git cd git git clone https://github.com/PurpleI2P/i2pd.git @@ -54,6 +54,7 @@ make USE_UPNP=yes ``` sudo apt install flatpak flatpak-builder +flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo flatpak --user install org.kde.Sdk/x86_64/5.11 # required SDK version might be higher, recheck the manifest git clone https://github.com/flathub/website.i2pd.i2pd && cd website.i2pd.i2pd flatpak-builder --user --install --force-clean i2pd_build_dir website.i2pd.i2pd.json From 7cf79f7b88233a0168881080460d125a64896cd3 Mon Sep 17 00:00:00 2001 From: nonlinear-chaos-order-etc <19966907+nonlinear-chaos-order-etc@users.noreply.github.com> Date: Sun, 22 Sep 2019 16:17:12 +0800 Subject: [PATCH 2/3] flatpak --user remote-add - a fix --- docs/devs/building/qt-desktop-gui.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/devs/building/qt-desktop-gui.md b/docs/devs/building/qt-desktop-gui.md index 7a2e61e..ac2aaed 100644 --- a/docs/devs/building/qt-desktop-gui.md +++ b/docs/devs/building/qt-desktop-gui.md @@ -54,7 +54,7 @@ make USE_UPNP=yes ``` sudo apt install flatpak flatpak-builder -flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo +flatpak --user remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo flatpak --user install org.kde.Sdk/x86_64/5.11 # required SDK version might be higher, recheck the manifest git clone https://github.com/flathub/website.i2pd.i2pd && cd website.i2pd.i2pd flatpak-builder --user --install --force-clean i2pd_build_dir website.i2pd.i2pd.json From ede32e2451a2ad052f1914aa192deed556a11b3a Mon Sep 17 00:00:00 2001 From: nonlinear-chaos-order-etc <19966907+nonlinear-chaos-order-etc@users.noreply.github.com> Date: Sun, 22 Sep 2019 16:18:35 +0800 Subject: [PATCH 3/3] flatpak --user install flathub - a fix --- docs/devs/building/qt-desktop-gui.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/devs/building/qt-desktop-gui.md b/docs/devs/building/qt-desktop-gui.md index ac2aaed..84073cd 100644 --- a/docs/devs/building/qt-desktop-gui.md +++ b/docs/devs/building/qt-desktop-gui.md @@ -55,7 +55,7 @@ make USE_UPNP=yes ``` sudo apt install flatpak flatpak-builder flatpak --user remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo -flatpak --user install org.kde.Sdk/x86_64/5.11 # required SDK version might be higher, recheck the manifest +flatpak --user install flathub org.kde.Sdk/x86_64/5.11 # required SDK version might be higher, recheck the manifest git clone https://github.com/flathub/website.i2pd.i2pd && cd website.i2pd.i2pd flatpak-builder --user --install --force-clean i2pd_build_dir website.i2pd.i2pd.json ```