mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2024-11-15 16:41:54 -05:00
Create build.sh
This commit is contained in:
parent
3448f4030b
commit
32cfb5b382
30
travis-ci/build.sh
Normal file
30
travis-ci/build.sh
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Liquid-DSP
|
||||||
|
mkdir jgaeddert/
|
||||||
|
git clone https://github.com/jgaeddert/liquid-dsp.git jgaeddert/liquid-dsp
|
||||||
|
pushd .
|
||||||
|
cd jgaeddert/liquid-dsp/
|
||||||
|
./bootstrap.sh
|
||||||
|
./configure
|
||||||
|
make
|
||||||
|
sudo make install
|
||||||
|
popd
|
||||||
|
|
||||||
|
# Soapy SDR
|
||||||
|
mkdir pothosware/
|
||||||
|
git clone https://github.com/pothosware/SoapySDR.git pothosware/SoapySDR
|
||||||
|
mkdir pothosware/SoapySDR-build
|
||||||
|
cmake pothosware/SoapySDR pothosware/SoapySDR-build
|
||||||
|
pushd .
|
||||||
|
cd pothosware/SoapySDR-build
|
||||||
|
make
|
||||||
|
sudo make install
|
||||||
|
popd
|
||||||
|
|
||||||
|
# CubicSDR
|
||||||
|
mkdir cjcliffe/CubicSDR-build
|
||||||
|
cmake cjcliffe/CubicSDR cjcliffe/CubicSDR-build
|
||||||
|
pushd .
|
||||||
|
cd cjcliffe/CubicSDR-build
|
||||||
|
make
|
Loading…
Reference in New Issue
Block a user