FreeDATA/install_jate.sh

27 lines
555 B
Bash
Raw Normal View History

#/bin/bash
cd ~
2021-01-16 08:28:37 +00:00
rm -rf FreeDV-JATE
git clone --branch dev https://github.com/DJ2LS/FreeDV-JATE.git
2021-01-16 08:28:37 +00:00
cd ~/FreeDV-JATE
rm -rf codec2
git clone https://github.com/drowe67/codec2.git
cd codec2 && mkdir build_linux && cd build_linux
cmake ../
make
2021-01-16 08:28:37 +00:00
cd ~/FreeDV-JATE
rm -rf LPCNet
git clone https://github.com/drowe67/LPCNet
cd LPCNet && mkdir build_linux && cd build_linux
2021-01-16 08:28:37 +00:00
cmake -DCODEC2_BUILD_DIR=~/FreeDV-JATE/codec2/build_linux ../
make
2021-01-17 11:53:44 +00:00
cd ~/FreeDV-JATE/codec2/build_linux && rm -Rf *
2021-01-16 08:28:37 +00:00
cmake -DLPCNET_BUILD_DIR=~/FreeDV-JATE/LPCNet/build_linux ..
make