Created
November 21, 2018 01:56
-
-
Save dysinger/a30751a78d651502ae96d6430c66f1f4 to your computer and use it in GitHub Desktop.
Buliding FreeDV from scratch on Debian/Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt-get update | |
apt-get upgrade -y | |
apt-get dist-upgrade -y | |
apt-get install -y subversion build-essential pkg-config cmake hamlib-dev libsamplerate0-dev libsndfile1-dev libspeexdsp-dev libwxgtk3.0-dev portaudio19-dev | |
cd /usr/local/src | |
svn co https://svn.code.sf.net/p/freetel/code/freedv-dev/ | |
mkdir /usr/local/src/freedv-dev/build | |
cd /usr/local/src/freedv-dev/build | |
cmake .. | |
make | |
make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment