diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-02-27 10:44:53 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-02-27 10:44:53 +0100 |
commit | 0793b8944cf601aa577474d8a1fd1b3af2bbfd1d (patch) | |
tree | 318d3472895cb6ae8e0874545400797582941c67 /installer | |
parent | e45c83ab04f136a671f97e776a47e2deefd7c167 (diff) | |
download | mmbtools-aux-0793b8944cf601aa577474d8a1fd1b3af2bbfd1d.tar.gz mmbtools-aux-0793b8944cf601aa577474d8a1fd1b3af2bbfd1d.tar.bz2 mmbtools-aux-0793b8944cf601aa577474d8a1fd1b3af2bbfd1d.zip |
Update installer scripts
Diffstat (limited to 'installer')
-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 |