Updated Build OSX (markdown)

Charles J. Cliffe 2015-02-17 22:06:30 -05:00
parent 7baed47d9f
commit c232875fe8
2 changed files with 5 additions and 24 deletions

5
Build-OSX---Homebrew.md Normal file

@ -0,0 +1,5 @@
# Installing CubicSDR using Homebrew
Run `brew tap dholm/homebrew-sdr` followed by `brew install cubicsdr --HEAD`. Assuming your [Homebrew](http://brew.sh) prefix is in your path you should be able to launch CubicSDR simply by running `CubicSDR` from a terminal.
To upgrade CubicSDR, since it is a head-only formula, simply remove it and then install it again.

@ -1,24 +0,0 @@
# Installing CubicSDR using Homebrew
Run `brew tap dholm/homebrew-sdr` followed by `brew install cubicsdr --HEAD`. Assuming your [Homebrew](http://brew.sh) prefix is in your path you should be able to launch CubicSDR simply by running `CubicSDR` from a terminal.
To upgrade CubicSDR, since it is a head-only formula, simply remove it and then install it again.
# Mac Build Instructions (using MacPorts):
```
ccliffe$ sudo port install rtl-sdr fftw-3-single liquid-dsp wxWidgets-3.0-libcxx
.. installing ..
ccliffe$ git clone https://github.com/cjcliffe/CubicSDR.git
.. cloning ..
ccliffe$ cd CubicSDR/cmake_build
ccliffe$ cmake ../ -DwxWidgets_CONFIG_EXECUTABLE=/opt/local/Library/Frameworks/wxWidgets.framework/Versions/wxWidgets/3.0-libcxx/bin/wx-config
... generating ...
-- Build files have been written to: .../CubicSDR/cmake_build
ccliffe$ make
.. compiling ..
ccliffe$ ./CubicSDR
```
If for some reason your wx-config is elsewhere (built manually or otherwise) you can find it via:
```
ccliffe$ locate wx-config
/opt/local/Library/Frameworks/wxWidgets.framework/Versions/wxWidgets/3.0-libcxx/bin/wx-config
```