aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2014-03-13 22:18:49 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2014-03-13 22:18:49 +0100
commit4c80bed16f5fcb04643ff3e7859b431c815787d6 (patch)
treeba9e754cf8be6b9c72fbba2192647546b0aeaf39
parentc520edc59f12eea97f2213326d43cbe6ca09f169 (diff)
downloadmmbtools-aux-4c80bed16f5fcb04643ff3e7859b431c815787d6.tar.gz
mmbtools-aux-4c80bed16f5fcb04643ff3e7859b431c815787d6.tar.bz2
mmbtools-aux-4c80bed16f5fcb04643ff3e7859b431c815787d6.zip
update debian installer script
-rw-r--r--installer/debian.sh14
1 files changed, 8 insertions, 6 deletions
diff --git a/installer/debian.sh b/installer/debian.sh
index 856f758..ca43b17 100644
--- a/installer/debian.sh
+++ b/installer/debian.sh
@@ -6,7 +6,7 @@
# * ODR-DabMux
# * ODR-DabMod
# * auxiliary scripts
-# * fdk-aac-dabplus
+# * the fdk-aac-dabplus package
#
# and all required dependencies for a
# Debian stable system.
@@ -83,7 +83,8 @@ sudo apt-get -y install build-essential git wget \
gstreamer0.10-plugins-bad gstreamer0.10-plugins-ugly gstreamer-tools \
sox alsa-tools alsa-utils \
automake libtool mpg123 \
- ncdu vim ntp links cpufrequtils
+ ncdu vim ntp links cpufrequtils \
+ libmagickwand-dev
# this will install boost, cmake and a lot more
sudo apt-get -y build-dep gnuradio uhd
@@ -126,7 +127,7 @@ git clone https://github.com/mpbraendli/mmbtools-aux.git
echo -e "$GREEN Compiling ODR-DabMux $NORMAL"
git clone https://github.com/Opendigitalradio/ODR-DabMux.git
pushd ODR-DabMux
-git checkout v0.4.2
+git checkout v0.5.0
./bootstrap.sh
./configure --enable-input-zeromq --enable-output-zeromq
make
@@ -136,7 +137,7 @@ popd
echo -e "$GREEN Compiling ODR-DabMod $NORMAL"
git clone https://github.com/Opendigitalradio/ODR-DabMod.git
pushd ODR-DabMod
-git checkout v0.4.1
+git checkout v0.4.2
./bootstrap.sh
./configure --enable-input-zeromq --enable-fft-simd --disable-debug --with-debug-malloc=no
make
@@ -147,8 +148,9 @@ popd
echo -e "$GREEN Compiling fdk-aac-dabplus $NORMAL"
git clone https://github.com/Opendigitalradio/fdk-aac-dabplus.git
pushd fdk-aac-dabplus
-autoreconf -i
-./configure --enable-example --enable-zmq
+git checkout v0.2.1
+./bootstrap
+./configure
make
sudo make install
popd