1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-09 14:46:34 -04:00
sdrangel/cmake/ci/build_codec2.sh
2022-05-26 22:35:41 +02:00

17 lines
311 B
Bash

#!/bin/sh
sudo apt-get -y install libsamplerate0-dev libspeex-dev libspeexdsp-dev
cd $HOME
mkdir -p external && cd external
mkdir -p drowe67 && cd drowe67
git clone https://github.com/drowe67/codec2.git
cd codec2
git reset --hard "v1.0.3"
mkdir -p build && cd build
cmake ..
sudo make install
sudo ldconfig