ref: 40dd88320333e9ec25941d18482d04cdbc971611
parent: 9147e60d94d9476cf50a9d3fd89003b1e5b76473
parent: 90c29a76822e690adcbb067dd704f8d2a51b5c7c
author: Jonne Kokkonen <jonne.kokkonen@gmail.com>
date: Fri May 7 04:50:12 EDT 2021
Merge pull request #12 from peterswimm/osx-build OSX Build instructions
--- 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
--
⑨