slides.vim

Des slides dans votre vim - retour accueil

git clone git://bebou.netlib.re/slides.vim
Log | Files | Refs |

commit 93bbc893419c8369032280b1e95b56f72218b64c
parent e2f1949036d40af902a568649f165119842c92a2
Auterice: Marc Chantreux <khatar@phear.org>
Date:   Sat, 19 May 2018 17:23:08 +0200

how to get cool-retro-term ready

using

* debian buster as target
* a docker to compile (so build dependencies are removed after
  installation)

Diffstat:
Mtips.md | 39+++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+), 0 deletions(-)

diff --git a/tips.md b/tips.md @@ -30,3 +30,42 @@ so the layer is ┃ ┃ ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━┛ +# old school look and feel + +## compile and use cool-retro-term + +run a docker + + mkdir /tmp/crt + docker run --rm -it -v /tmp/crt:/code debian:buster + +inside the docker + + apt update + apt install git build-essential \ + qmlscene qt5-qmake qt5-default \ + qtdeclarative5-dev qml-module-qtquick-controls \ + qml-module-qtgraphicaleffects qml-module-qtquick-dialogs \ + qml-module-qtquick-localstorage qml-module-qtquick-window2 \ + qml-module-qt-labs-settings qml-module-qt-labs-folderlistmodel + git clone --recursive https://github.com/Swordfish90/cool-retro-term.git + cd cool-retro-term/ + qmake && make + +while compiling, install runtime dependencies on your system + + sudo aptitude install \ + qml-module-qt-labs-folderlistmodel \ + qml-module-qt-labs-settings \ + qml-module-qtquick-dialogs \ + qml-module-qtquick-localstorage \ + qml-module-qtquick-controls + + +when everything is ready + + # choose your own ~/local/bin :) + cp /tmp/crt/cool-retro-term/cool-retro-term ~/local/bin + rehash + cool-retro-term +