Update README.md

This commit is contained in:
Ilias Daradimos 2019-06-05 11:36:58 +00:00 committed by Manolis Surligas
parent f227b94ef1
commit 8b74aa8e82
1 changed files with 4 additions and 2 deletions

View File

@ -14,6 +14,7 @@ for decoding signals from various scientific and academic sattelites.
* libpng * libpng
* libpng++ * libpng++
* git * git
* swig
**Optional** **Optional**
* gr-osmocom (for using the flowgraphs with real SDR hardware) * gr-osmocom (for using the flowgraphs with real SDR hardware)
@ -23,14 +24,15 @@ for decoding signals from various scientific and academic sattelites.
``` ```
apt install -y build-essential cmake gnuradio g++ \ apt install -y build-essential cmake gnuradio g++ \
python-mako python-six libogg-dev \ python-mako python-six libogg-dev \
libvorbis-dev libpng-dev libpng++-dev libvorbis-dev libpng-dev libpng++-dev \
swig
cd /tmp cd /tmp
git clone https://github.com/gnuradio/volk.git git clone https://github.com/gnuradio/volk.git
cd volk cd volk
mkdir build mkdir build
cd build cd build
cmake .. cmake ..
make -j 8 make -j $(nproc --all)
sudo make install sudo make install
``` ```