From 8dc34f7131758ae24344c6fca4f9e1bf2aed6981 Mon Sep 17 00:00:00 2001 From: Herby Gillot Date: Wed, 11 Aug 2021 10:14:31 -0400 Subject: [PATCH] README: add MacPorts instructions (#250) --- README.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4a053b6..6ccb007 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ Make sure to click "Watch" in the top right, then "Custom" > "Releases" to get n Amfora is packaged in many Linux distros. It's also on [Scoop](https://scoop.sh/) for Windows users. -### Homebrew +### macOS (Homebrew) If you use [Homebrew](https://brew.sh/), you can install Amfora with: ``` @@ -55,6 +55,19 @@ You can update it with: brew upgrade amfora ``` +### macOS (MacPorts) + +On macOS, Amfora can also be installed through [MacPorts](https://www.macports.org): +``` +sudo port install amfora +``` +You can update it with: +``` +sudo port selfupdate +sudo port upgrade amfora +``` +**NOTE:** this installation source is community-maintained. More information [here](https://ports.macports.org/port/amfora/). + ### Termux If you're using [Termux](https://termux.com/) on Android you can't just run Amfora like normal. After installing Amfora, run `pkg install proot`. Then run `termux-chroot` before running the Amfora binary. You can exit out of the chroot after closing Amfora. See [here](https://stackoverflow.com/q/38959067/7361270) for why this is needed.