From b2cb30f80a3647da9fe306bc7459e64291990fdb Mon Sep 17 00:00:00 2001 From: darksidelemm Date: Mon, 26 Jun 2017 08:39:57 +0000 Subject: [PATCH] Added starts of OSX guide git-svn-id: https://svn.code.sf.net/p/freetel/code@3254 01035d8c-6547-0410-b346-abe4f91aad63 --- misc/lilacsat1/README.osx | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 misc/lilacsat1/README.osx diff --git a/misc/lilacsat1/README.osx b/misc/lilacsat1/README.osx new file mode 100644 index 00000000..53bc0d22 --- /dev/null +++ b/misc/lilacsat1/README.osx @@ -0,0 +1,26 @@ +# LilacSat-1 Rx Setup for AREG Club Project - OSX Installation Notes +# Mark Jessop and David Rowe +# June 2017 + + + +Installing Gnuradio +------------------- + +You need the following packages from macports: +gnuradio-devel +gqrx-devel + +Install them IN THAT ORDER, otherwise gqrx-devel will pull in a 'stable' version of gnuradio, which wont work with gr-satellites. +I had to wipe my macports folder and start from scratch to make things play nicely. + + +Making cmake play nicely with macports +-------------------------------------- +Add the following to your .profile file: + +alias cm_port='cmake -DPYTHON_EXECUTABLE=/opt/local/bin/python2.7 -DPYTHON_INCLUDE_DIR=/opt/local/Library/Frameworks/Python.framework/Versions/2.7/Headers -DPYTHON_LIBRARY=/opt/local/Library/Frameworks/Python.framework/Versions/2.7/Python -DGR_PYTHON_DIR=/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages -DCMAKE_INSTALL_NAME_DIR=/opt/local/lib -DCMAKE_SYSTEM_PREFIX_PATH="/opt/local;/usr" -DCMAKE_INSTALL_PREFIX=/opt/local' + +From now on, instead of using 'cmake ' when building a gnuradio out-of-tree module (i.e. gr-satellites), use cm_port +i.e.: +> cm_port ../ -- 2.25.1