Skip to content

Commit

Permalink
Make brew the default package manager
Browse files Browse the repository at this point in the history
Make brew the default package manager in the README install instructions
for Darwin systems.
  • Loading branch information
davidxbors authored and razvand committed Apr 13, 2022
1 parent 37fdb13 commit d9d8b5a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,19 +46,19 @@ sudo apt-get install coreutils grep sed tar wget unzip build-essential
sudo apt-get install libssl-dev python2.7 libz-dev libbz2-dev libusb-dev cmake libpng12-dev dmg2img
```

or the following commands on macOS using [MacPorts](https://www.macports.org/) and [Homebrew](https://brew.sh/):
or the following commands on macOS using [Homebrew](https://brew.sh/):

```
sudo port selfupdate
sudo port install coreutils grep wget unzip
sudo port install openssl python27 zlib bzip2 libpng cmake
sudo port install libusb
brew install coreutils
brew install coreutils grep wget unzip
brew install openssl python zlib bzip2 libpng cmake
brew install libusb coreutils
```

The `dmg2img` tool and package isn't required on macOS. The `libusb` installation isn't required and it's not detected by the `xpwn` installation.

There should be similar commands on macOS if you are using only [Homebrew](https://brew.sh/).
There should be similar commands on macOS if you are using [MacPorts](https://www.macports.org/).
`coreutils` should be installed with `brew`, otherwise the scripts won't find `realpath` and `tac`.


Some external tools in the `tools/` subfolder need to be built. You need to build:

Expand Down

0 comments on commit d9d8b5a

Please sign in to comment.