You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.2 KiB
Plaintext
30 lines
1.2 KiB
Plaintext
5 years ago
|
#!/bin/bash
|
||
|
|
||
|
function error {
|
||
|
echo -e "\e[31m$1\e[39m"
|
||
|
exit 1
|
||
|
}
|
||
|
|
||
|
# Get dependencies
|
||
|
DIRECTORY="$(dirname "$(dirname "$(dirname "$0")")")"
|
||
|
"${DIRECTORY}/pkg-install" "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" "$(dirname "$0")" || exit 1
|
||
|
|
||
|
# Get CRT from github
|
||
|
git clone --recursive https://github.com/Swordfish90/cool-retro-term || error "failed to clone repository!"
|
||
|
|
||
|
# Compile
|
||
|
cd cool-retro-term || error "failed on cd step!"
|
||
|
qmake || error "failed on qmake step!"
|
||
|
make -j8 || error "failed on make step!"
|
||
|
|
||
|
echo "[Desktop Entry]
|
||
|
Comment=Use the command line the old way
|
||
|
Exec=/home/pi/cool-retro-term/cool-retro-term
|
||
|
GenericName=Terminal emulator
|
||
|
Icon=/home/pi/cool-retro-term/app/icons/64x64/cool-retro-term.png
|
||
|
Name=Cool Retro Term
|
||
|
Categories=GTK;System;TerminalEmulator;
|
||
|
StartupNotify=true
|
||
|
Terminal=false
|
||
|
Type=Application
|
||
|
Keywords=shell;prompt;command;commandline;console;command line;execute;" >> /home/pi/.local/share/applications/crt.desktop
|