From ce8e27a67c34c5264ee659adbb087a0a7cd16546 Mon Sep 17 00:00:00 2001 From: Benoit Pierre Date: Fri, 19 Jul 2024 21:25:14 +0200 Subject: [PATCH] doc: update macOS building instructions --- doc/Building.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/doc/Building.md b/doc/Building.md index a3c77b800..9a01c30d8 100644 --- a/doc/Building.md +++ b/doc/Building.md @@ -83,15 +83,14 @@ luarocks --lua-version=5.1 --local install busted Install the prerequisites using [Homebrew](https://brew.sh/): ``` -brew install autoconf automake binutils cmake coreutils gettext \ - gnu-getopt grep libtool make nasm ninja pkg-config sdl2 wget +brew install autoconf automake binutils cmake coreutils findutils gnu-getopt \ + libtool make nasm ninja p7zip pkg-config sdl2 util-linux ``` -You will also have to ensure Homebrew's gettext, gnu-getopt, grep are in your path, e.g., via +You will also have to ensure Homebrew's findutils, gnu-getopt, make & util-linux are in your path, e.g., via ``` -export PATH="$(brew --prefix)/opt/gettext/bin:$(brew --prefix)/opt/gnu-getopt/bin:$(brew --prefix)/opt/grep/libexec/gnubin:${PATH}" +export PATH="$(brew --prefix)/opt/findutils/libexec/gnubin:$(brew --prefix)/opt/gnu-getopt/bin:$(brew --prefix)/opt/make/libexec/gnubin:$(brew --prefix)/opt/util-linux/bin:${PATH}" ``` -See also `brew info gettext` for details on how to make that permanent in your shell. In the same vein, if that's not already the case, you probably also want to make sure Homebrew's stuff takes precedence: ```