Updated build scripts with some fixes and more OSX stuff
authordarksidelemm <darksidelemm@01035d8c-6547-0410-b346-abe4f91aad63>
Mon, 26 Jun 2017 09:36:08 +0000 (09:36 +0000)
committerdarksidelemm <darksidelemm@01035d8c-6547-0410-b346-abe4f91aad63>
Mon, 26 Jun 2017 09:36:08 +0000 (09:36 +0000)
git-svn-id: https://svn.code.sf.net/p/freetel/code@3256 01035d8c-6547-0410-b346-abe4f91aad63

misc/lilacsat1/3-build_gqrx_gr-satellites.sh
misc/lilacsat1/README.osx

index babeb7d1817698b0f5eaa17879d9246f833684ec..4c05bf99c619c13e6957033d6ca6a9b41c029e3a 100755 (executable)
@@ -27,6 +27,7 @@ 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
+cp ./apps/hierarchical/*.grc ~/.grc_gnuradio/
 
 # OK now ready to run everything, back to REAME.txt
index 53bc0d22da8adaf5c4d2295cd3d32d495c5f0287..4d885f835b51ca9eb7cd0723fd3831aabcc42171 100644 (file)
@@ -7,7 +7,14 @@
 Installing Gnuradio
 -------------------
 
-You need the following packages from macports: 
+You need the following packages from macports (sudo port install <portname>): 
+git
+subversion
+sox
+feh
+gpredict
+cmake
+py27-pip
 gnuradio-devel
 gqrx-devel
 
@@ -15,6 +22,10 @@ Install them IN THAT ORDER, otherwise gqrx-devel will pull in a 'stable' version
 I had to wipe my macports folder and start from scratch to make things play nicely.
 
 
+Install other packages we need
+------------------------------
+sudo pip install construct
+
 Making cmake play nicely with macports
 --------------------------------------
 Add the following to your .profile file:
@@ -24,3 +35,24 @@ alias cm_port='cmake -DPYTHON_EXECUTABLE=/opt/local/bin/python2.7 -DPYTHON_INCLU
 From now on, instead of using 'cmake <command here>' when building a gnuradio out-of-tree module (i.e. gr-satellites), use cm_port
 i.e.:
 > cm_port ../
+
+
+Install codec2-dev
+-------------------
+<TODO>
+
+
+Install gr-satellites
+---------------------
+
+$ git clone https://github.com/daniestevez/gr-satellites.git
+$ cd gr-satellites && mkdir build_linux && cd build_linux
+$ cm_port ..
+$ make 
+$ sudo make install
+$ cd ..
+$ ./compile_hierarchical.sh
+$ cp ./apps/hierarchical/*.grc ~/.grc_gnuradio/
+
+
+More to come...
\ No newline at end of file