You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
540 B
23 lines
540 B
#! /bin/sh
|
|
|
|
# op25 install script for debian based systems
|
|
# including ubuntu 14/16 and raspbian
|
|
|
|
if [ ! -d op25/gr-op25 ]; then
|
|
echo ====== error, op25 top level directories not found
|
|
echo ====== you must change to the op25 top level directory
|
|
echo ====== before running this script
|
|
exit
|
|
fi
|
|
|
|
sudo apt-get update
|
|
sudo apt-get build-dep gnuradio
|
|
sudo apt-get install gnuradio gnuradio-dev gr-osmosdr librtlsdr-dev libuhd-dev libhackrf-dev libitpp-dev libpcap-dev git
|
|
|
|
mkdir build
|
|
cd build
|
|
cmake ../
|
|
make
|
|
sudo make install
|
|
sudo ldconfig
|