From: drowe67 Date: Sat, 24 Jun 2017 05:05:08 +0000 (+0000) Subject: fixed a few bugs in script 3 X-Git-Url: http://git.whiteaudio.com/gitweb/?a=commitdiff_plain;h=d976d203600ef86e90b050743d0ba2bae26fad23;p=freetel-svn-tracking.git fixed a few bugs in script 3 git-svn-id: https://svn.code.sf.net/p/freetel/code@3246 01035d8c-6547-0410-b346-abe4f91aad63 --- diff --git a/misc/lilacsat1/3-build_gqrx_gr-satellites.sh b/misc/lilacsat1/3-build_gqrx_gr-satellites.sh index 53298f57..53c13f92 100755 --- a/misc/lilacsat1/3-build_gqrx_gr-satellites.sh +++ b/misc/lilacsat1/3-build_gqrx_gr-satellites.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash -x # # 3-build_gqrx_gr-satellites.sh # LilacSat-1 Rx Setup for AREG Club Project @@ -7,25 +7,26 @@ # Install gqrx -sudo pybombs install gqrx +#sudo pybombs install gqrx # Install libfec, which gr-satellites needs. This is installed outside # of pybombs ~/prefix/default environment -git clone https://github.com/daniestevez/libfec.git -cd libfec && ./configure && make && sudo make install && cd .. +#git clone https://github.com/daniestevez/libfec.git +#cd libfec && ./configure && make && sudo make install && cd .. # Hopefully by now we have everything needed to compile gr-satellites # Note magic cmake command to set path that cost my 3 hours of my life # that I want back -cd prefix/default/ +cd ~/prefix/default/ source setup_env.sh cd src git clone https://github.com/daniestevez/gr-satellites.git cd gr-satellites && mkdir build_linux && cd build_linux cmake -DCMAKE_INSTALL_PREFIX=$PYBOMBS_PREFIX .. +make && make install cd .. -./compile_hierarchical.sh +#./compile_hierarchical.sh # OK now ready to run everything, back to REAME.txt