From 383059c222e409002af8a4d17c9893e43c09bd76 Mon Sep 17 00:00:00 2001 From: mafagafogigante Date: Sat, 4 Oct 2014 12:50:11 -0300 Subject: [PATCH] Added a shell script for Ubuntu. Included a shell script that uses APT to install all dependencies and 'qmake && make' to build. Updated README.md so it mentions this script. --- README.md | 5 +++++ ubuntu-make.sh | 9 +++++++++ 2 files changed, 14 insertions(+) create mode 100644 ubuntu-make.sh diff --git a/README.md b/README.md index d08f7f1..dc31d1f 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,12 @@ Make sure to install these first. **Ubuntu 14.04** sudo apt-get install build-essential qmlscene qt5-qmake qt5-default qtdeclarative5-dev qtdeclarative5-controls-plugin qtdeclarative5-qtquick2-plugin libqt5qml-graphicaleffects qtdeclarative5-dialogs-plugin qtdeclarative5-localstorage-plugin qtdeclarative5-window-plugin + +Alternatively (from the cool-retro-term directory) + sudo bash ubuntu-make.sh + +Do note that using shell script abovementioned also compiles the program. --- **Debian Jessie** diff --git a/ubuntu-make.sh b/ubuntu-make.sh new file mode 100644 index 0000000..32babd6 --- /dev/null +++ b/ubuntu-make.sh @@ -0,0 +1,9 @@ +# This is a simple shell script for installing the dependencies and compiling +# the source under Ubuntu 14.04. +# Note that it may also work with other versions of Ubuntu. + +apt-get update + +apt-get install build-essential qmlscene qt5-qmake qt5-default qtdeclarative5-dev qtdeclarative5-controls-plugin qtdeclarative5-qtquick2-plugin libqt5qml-graphicaleffects qtdeclarative5-dialogs-plugin qtdeclarative5-localstorage-plugin qtdeclarative5-window-plugin + +qmake && make