shithub: m8c

Download patch

ref: 90c29a76822e690adcbb067dd704f8d2a51b5c7c
parent: 9147e60d94d9476cf50a9d3fd89003b1e5b76473
author: Peter Swimm <mee@peterswimm.com>
date: Thu May 6 10:45:31 EDT 2021

Update README.md

Added instructions for brew building and install on OSX.

--- a/README.md
+++ b/README.md
@@ -20,19 +20,25 @@
 
 ## Installation
 
-These instructions are tested with Raspberry Pi 3 B+ and Raspberry Pi OS with desktop (March 4 2021 release), but should apply for other Debian/Ubuntu flavors as well.
+These instructions are tested with Raspberry Pi 3 B+ and Raspberry Pi OS with desktop (March 4 2021 release), but should apply for other Debian/Ubuntu flavors as well. The begining on the build process on OSX is slightly different at the start, and then the same once packages are installed.
 
 The instructions assume that you already have a working Linux desktop installation with an internet connection.
 
 Open Terminal and run the following commands:
 
-### Install required packages
+### Install required packages (Raspberry Pi, Linux)
 
 ```
 sudo apt update && sudo apt install -y git gcc make libsdl2-dev libserialport-dev
 ```
+### Install required packages (OSX
 
-### Download source code
+This assumes you have [installed brew](https://docs.brew.sh/Installation)
+
+```
+brew update && brew install -y git gcc make libsdl2 libserialport
+```
+### Download source code (All)
 
 ```
 mkdir code && cd code
--