aboutsummaryrefslogtreecommitdiff
path: root/binary_tarball
diff options
context:
space:
mode:
Diffstat (limited to 'binary_tarball')
-rwxr-xr-xbinary_tarball/scripts/1_Install_Dependencies.sh17
1 files changed, 11 insertions, 6 deletions
diff --git a/binary_tarball/scripts/1_Install_Dependencies.sh b/binary_tarball/scripts/1_Install_Dependencies.sh
index 5ba25c0..173d020 100755
--- a/binary_tarball/scripts/1_Install_Dependencies.sh
+++ b/binary_tarball/scripts/1_Install_Dependencies.sh
@@ -6,15 +6,20 @@ set -e
# Setup Script Variables
# _DEPENDENCIES="mercurial wget git flatpak flatpak-builder";
_DEPENDENCIES="wget git xvfb build-essential xz-utils curl python3 libjack-dev";
+export DEBIAN_FRONTEND=noninteractive
# Installs Dependencies
printf "\nInstalling dependencies: $_DEPENDENCIES\n";
-DEBIAN_FRONTEND=noninteractive apt-get -qq update;
-DEBIAN_FRONTEND=noninteractive apt-get -y -qq install $_DEPENDENCIES;
+apt-get -qq update;
+apt-get -y -qq install $_DEPENDENCIES;
# Installs (non-ancient) clang
-DEBIAN_FRONTEND=noninteractive apt install -y software-properties-common apt-transport-https ca-certificates
+apt install -y software-properties-common apt-transport-https ca-certificates
apt-add-repository "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-9 main"
-DEBIAN_FRONTEND=noninteractive wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add
-DEBIAN_FRONTEND=noninteractive apt-get update
-DEBIAN_FRONTEND=noninteractive apt-get -y install clang-9 libclang-9-dev
+wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add
+apt-get update
+apt-get -y install clang-9 libclang-9-dev
+
+# Installs (non-ancient) clang
+curl -sL https://deb.nodesource.com/setup_13.x | bash -
+apt-get install -y nodejs
bgstack15