From 47da069034a930572ef6954d6a051f74cb16fbdf Mon Sep 17 00:00:00 2001 From: c vw Date: Thu, 28 May 2020 10:22:56 +0200 Subject: [PATCH] brew.init: MacOS shell script to initialize Linux-style delelopment environment --- MacOS/brew.init | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100755 MacOS/brew.init diff --git a/MacOS/brew.init b/MacOS/brew.init new file mode 100755 index 0000000..92b7909 --- /dev/null +++ b/MacOS/brew.init @@ -0,0 +1,45 @@ +#!/bin/sh + +# +# This installs the "command line tools", these are necessary to install the +# homebrew universe +# +xcode-select --install + +# +# This installes the core of the homebrew universe +# +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" + +# +# All needed for pihpsdr +# +brew install gtk+3 +brew install pkg-config +brew install portaudio +brew install fftw + +# +# This is for the SoapySDR universe +# There are even more radios supported for which you need +# additional modules, for a list, goto the web page +# https://formulae.brew.sh +# and insert the search string "pothosware". In the long +# list produced, search for the same string using the +# "search" facility of your internet browser +# +brew install libusb +brew install pothosware/pothos/soapysdr +brew install pothosware/pothos/limesuite +brew install pothosware/pothos/soapyrtlsdr +brew install pothosware/pothos/soapyairspy +brew install pothosware/pothos/soapyairspyhf +brew install pothosware/pothos/soapyhackrf +brew install pothosware/pothos/soapyredpitaya +brew install pothosware/pothos/soapyrtlsdr + +# +# This is for PrivacyProtection +# +brew analytics off + -- 2.45.2