diff options
Diffstat (limited to 'installer/install-deps.sh')
-rwxr-xr-x | installer/install-deps.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/installer/install-deps.sh b/installer/install-deps.sh new file mode 100755 index 0000000..887c77e --- /dev/null +++ b/installer/install-deps.sh @@ -0,0 +1,12 @@ +echo -e "$GREEN Updating debian package repositories $NORMAL" +apt-get -y update + +echo -e "$GREEN Installing essential prerquisites $NORMAL" +# some essential and less essential prerequisistes +apt-get -y install build-essential git wget \ + sox alsa-tools alsa-utils \ + automake libtool mpg123 \ + ncdu vim ntp links cpufrequtils + +# this will install boost, cmake and a lot more +apt-get -y build-dep uhd |