blob: 887c77ea57b43394431cc31fe79f6219df650f53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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
|