Add software
This commit is contained in:
		
							
								
								
									
										7
									
								
								Software/CubicSDR/travis-ci/build_cubicsdr.sh
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								Software/CubicSDR/travis-ci/build_cubicsdr.sh
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,7 @@
 | 
			
		||||
# CubicSDR
 | 
			
		||||
cd $HOME/build
 | 
			
		||||
mkdir cjcliffe/CubicSDR-build
 | 
			
		||||
cd cjcliffe/CubicSDR-build
 | 
			
		||||
cmake ../CubicSDR -DCMAKE_BUILD_TYPE=Release -DwxWidgets_CONFIG_EXECUTABLE=$HOME/build/wxWidgets/staticlib/bin/wx-config -DUSE_HAMLIB=1 -DENABLE_DIGITAL_LAB=1
 | 
			
		||||
make -j2
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										16
									
								
								Software/CubicSDR/travis-ci/build_liquiddsp.sh
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										16
									
								
								Software/CubicSDR/travis-ci/build_liquiddsp.sh
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,16 @@
 | 
			
		||||
# Liquid-DSP
 | 
			
		||||
cd $HOME/build
 | 
			
		||||
 | 
			
		||||
mkdir jgaeddert/
 | 
			
		||||
cd jgaeddert/
 | 
			
		||||
git clone https://github.com/jgaeddert/liquid-dsp.git
 | 
			
		||||
 | 
			
		||||
cd liquid-dsp/
 | 
			
		||||
./bootstrap.sh
 | 
			
		||||
 | 
			
		||||
echo "Configuring liquid-dsp.."
 | 
			
		||||
./configure > /dev/null
 | 
			
		||||
 | 
			
		||||
echo "Building liquid-dsp.."
 | 
			
		||||
make -j2 > /dev/null
 | 
			
		||||
sudo make install
 | 
			
		||||
							
								
								
									
										16
									
								
								Software/CubicSDR/travis-ci/build_soapysdr.sh
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										16
									
								
								Software/CubicSDR/travis-ci/build_soapysdr.sh
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,16 @@
 | 
			
		||||
# Soapy SDR
 | 
			
		||||
cd $HOME/build
 | 
			
		||||
 | 
			
		||||
mkdir pothosware/
 | 
			
		||||
cd pothosware/
 | 
			
		||||
git clone https://github.com/pothosware/SoapySDR.git
 | 
			
		||||
 | 
			
		||||
mkdir SoapySDR-build
 | 
			
		||||
cd SoapySDR-build
 | 
			
		||||
 | 
			
		||||
cmake ../SoapySDR -DCMAKE_BUILD_TYPE=Release
 | 
			
		||||
 | 
			
		||||
echo "Building SoapySDR.."
 | 
			
		||||
make -j2 > /dev/null
 | 
			
		||||
 | 
			
		||||
sudo make install
 | 
			
		||||
							
								
								
									
										32
									
								
								Software/CubicSDR/travis-ci/build_wxwidgets.sh
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										32
									
								
								Software/CubicSDR/travis-ci/build_wxwidgets.sh
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,32 @@
 | 
			
		||||
# wxWidgets
 | 
			
		||||
if [ -f "$HOME/build/wxWidgets/staticlib/bin/wx-config" ]; then
 | 
			
		||||
    echo "wxWidgets cache found; skipping.."
 | 
			
		||||
    exit 0
 | 
			
		||||
else
 | 
			
		||||
    echo "wxWidgets cache not found; building.."    
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
echo "Fetch wxWidgets.."
 | 
			
		||||
cd $HOME/build
 | 
			
		||||
mkdir -p $HOME/build/wxWidgets/staticlib
 | 
			
		||||
cd wxWidgets
 | 
			
		||||
wget https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.5/wxWidgets-3.1.5.tar.bz2 > /dev/null
 | 
			
		||||
 | 
			
		||||
echo "Unpacking wxWidgets.."
 | 
			
		||||
tar -xvjf wxWidgets-3.1.5.tar.bz2 > /dev/null
 | 
			
		||||
cd wxWidgets-3.1.5/
 | 
			
		||||
./autogen.sh
 | 
			
		||||
 | 
			
		||||
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then 
 | 
			
		||||
./configure --with-opengl --disable-glcanvasegl --disable-shared --enable-monolithic --with-libjpeg --with-libtiff --with-libpng --with-zlib --disable-sdltest --enable-unicode --enable-display --enable-propgrid --disable-webkit --disable-webview --disable-webviewwebkit --prefix=`echo $HOME/build/wxWidgets/staticlib` CXXFLAGS="-std=c++0x"
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
 | 
			
		||||
./configure --with-opengl --disable-glcanvasegl --disable-shared --enable-monolithic --with-libjpeg --with-libtiff --with-libpng --with-zlib --with-mac --disable-sdltest --enable-unicode --enable-display --enable-propgrid --disable-webkit --disable-webview --disable-webviewwebkit --prefix=`echo $HOME/build/wxWidgets/staticlib` CXXFLAGS="-std=c++0x" --with-libiconv=/usr
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
echo "Building wxWidgets.."
 | 
			
		||||
make -j2
 | 
			
		||||
make install
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user