diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-12-18 10:18:02 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-12-18 10:18:49 +0100 |
commit | 3025c80c25c7eb83ec6e476af1e3fae78743c8ca (patch) | |
tree | cf3ab08be73ee1887c29edbbab3bccf7f753e1d8 | |
parent | 5494616c0092448b177571f898ec449bc39c72d7 (diff) | |
download | mmbtools-aux-3025c80c25c7eb83ec6e476af1e3fae78743c8ca.tar.gz mmbtools-aux-3025c80c25c7eb83ec6e476af1e3fae78743c8ca.tar.bz2 mmbtools-aux-3025c80c25c7eb83ec6e476af1e3fae78743c8ca.zip |
debian.sh: use CMake for toolame-dab
-rw-r--r-- | installer/debian.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/installer/debian.sh b/installer/debian.sh index 15d629d..8afa942 100644 --- a/installer/debian.sh +++ b/installer/debian.sh @@ -195,8 +195,11 @@ 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 .. make -sudo cp toolame /usr/local/bin/toolame +sudo make install popd echo -e "$GREEN Compiling FDK-AAC-DABplus $NORMAL" |