aboutsummaryrefslogtreecommitdiffstats
path: root/installer/debian.sh
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2016-09-16 14:53:25 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2016-09-16 14:53:25 +0200
commitc90b8a9b55b2f1571109faf0d75647a71416671a (patch)
tree49c490556488b8455d94d09730811de0b5f6763a /installer/debian.sh
parent2651ba83f9dddcf4911d3ebd5d7710f2e5d1705d (diff)
downloadmmbtools-aux-c90b8a9b55b2f1571109faf0d75647a71416671a.tar.gz
mmbtools-aux-c90b8a9b55b2f1571109faf0d75647a71416671a.tar.bz2
mmbtools-aux-c90b8a9b55b2f1571109faf0d75647a71416671a.zip
Update install instructions
Diffstat (limited to 'installer/debian.sh')
-rw-r--r--installer/debian.sh42
1 files changed, 25 insertions, 17 deletions
diff --git a/installer/debian.sh b/installer/debian.sh
index 4fe2dfd..764e2c5 100644
--- a/installer/debian.sh
+++ b/installer/debian.sh
@@ -6,8 +6,9 @@
# * ODR-DabMux
# * ODR-DabMod
# * auxiliary scripts
-# * the FDK-AAC-DABplus package
-# * Toolame-DAB
+# * the FDK-AAC library with DAB+ patch
+# * ODR-AudioEnc
+# * ODR-PadEnc
#
# and all required dependencies for a
# Debian stable system.
@@ -33,7 +34,7 @@ echo
echo "This is the mmbTools installer script for debian"
echo "================================================"
echo
-echo "It will install ODR-DabMux, ODR-DabMod, FDK-AAC-DABplus, Toolame-dab"
+echo "It will install ODR-DabMux, ODR-DabMod, ODR-AudioEnc, ODR-PadEnc"
echo "and all prerequisites to your machine."
echo $DISTRO
@@ -177,30 +178,37 @@ make
sudo make install
popd
-
-echo -e "$GREEN Compiling Toolame-DAB $NORMAL"
-git clone https://github.com/Opendigitalradio/toolame-dab.git
-pushd toolame-dab
-mkdir build
-cd build
-cmake ..
+echo -e "$GREEN Compiling fdk-aac library $NORMAL"
+git clone https://github.com/Opendigitalradio/fdk-aac.git
+pushd fdk-aac
+./bootstrap
+./configure
make
sudo make install
popd
-echo -e "$GREEN Compiling FDK-AAC-DABplus $NORMAL"
-git clone https://github.com/Opendigitalradio/fdk-aac-dabplus.git
-pushd fdk-aac-dabplus
+echo -e "$GREEN Updating ld cache $NORMAL"
+# update ld cache
+sudo ldconfig
+
+
+echo -e "$GREEN Compiling ODR-AudioEnc $NORMAL"
+git clone https://github.com/Opendigitalradio/ODR-AudioEnc.git
+pushd ODR-AudioEnc
./bootstrap
./configure --enable-jack --enable-vlc
make
sudo make install
popd
-
-echo -e "$GREEN Updating ld cache $NORMAL"
-# update ld cache
-sudo ldconfig
+echo -e "$GREEN Compiling ODR-PadEnc $NORMAL"
+git clone https://github.com/Opendigitalradio/ODR-PadEnc.git
+pushd ODR-PadEnc
+./bootstrap
+./configure --enable-jack --enable-vlc
+make
+sudo make install
+popd
echo -e "$GREEN Done installing all tools $NORMAL"