diff options
-rw-r--r-- | installer/debian.sh | 25 | ||||
-rwxr-xr-x | installer/install-deps.sh | 8 |
2 files changed, 31 insertions, 2 deletions
diff --git a/installer/debian.sh b/installer/debian.sh index ba07ab7..eec820e 100644 --- a/installer/debian.sh +++ b/installer/debian.sh @@ -178,3 +178,28 @@ echo -e "$GREEN Updating ld cache $NORMAL" # update ld cache sudo ldconfig + +echo -e "$GREEN Done installing all tools $NORMAL" +echo -e "All the tools have been dowloaded to the dab/ folder," +echo -e "compiled and installed to /usr/local" +echo +echo -e "The stable versions have been compiled, i.e. the latest" +echo -e "'master' branch from the git repositories" +echo +echo -e "If you know there is a new release, and you want to update," +echo -e "you have to go to the folder containing the tool, pull" +echo -e "the latest changes from the repository and recompile" +echo -e "it manually." +echo +echo -e "To pull the latest changes for ODR-DabMux, use:" +echo -e " cd ~/dab/ODR-DabMux" +echo -e " git pull" +echo -e " ./bootstrap.sh" +echo -e " ./configure --enable-input-zeromq --enable-output-zeromq" +echo -e " make" +echo -e " sudo make install" +echo +echo -e "This example should give you the idea. For the options" +echo -e "for compiling the other tools, please see in the debian.sh" +echo -e "script what options are used. Please also read the README" +echo -e "and INSTALL files in the repositories." diff --git a/installer/install-deps.sh b/installer/install-deps.sh index 887c77e..7cba8ef 100755 --- a/installer/install-deps.sh +++ b/installer/install-deps.sh @@ -3,10 +3,14 @@ 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 \ +sudo apt-get -y install build-essential git wget \ sox alsa-tools alsa-utils \ automake libtool mpg123 \ - ncdu vim ntp links cpufrequtils + libasound2 libasound2-dev \ + libmagickwand5 libmagickwand-dev \ + libjack-jackd2-dev jackd2 \ + ncdu vim ntp links cpufrequtils \ + libfftw3-dev # this will install boost, cmake and a lot more apt-get -y build-dep uhd |