Brew 🍺 - leotm/react-native-template-new-architecture GitHub Wiki

Capture

Most formulae need a compiler, a few need a full Xcode install

  • formula: pkg def .rb (source code compiled, managed by brew)
  • cask: app binary (can incl. GUI)

Formulae

https://github.com/Homebrew/homebrew-core/tree/master/Formula

e.g. yarn

Allow alternate casks

brew tap homebrew/cask-versions

Casks

Custom

# Extract

# Remote
brew install https://raw.githubusercontent.com/Homebrew/homebrew-core/86a44a0a552c673a05f11018459c9f5faae3becc/Formula/[email protected]
# Local
brew install leo/python2/[email protected]
# or
brew install /opt/homebrew/Library/Taps/<user>/homebrew-python2/Formula/[email protected]
# or
brew install /usr/local/Homebrew/Library/Taps/<user>/homebrew-python2/Formula/[email protected]

Remove

brew untap <user>/python2

Deps

brew deps --tree --installed folly

Warning: `brew deps` is not the actual runtime dependencies because --tree was passed!
This means dependencies may differ from a formula's declared dependencies.
Hide these hints with `HOMEBREW_NO_ENV_HINTS=1` (see `man brew`).
folly
├── boost
│   ├── icu4c@78
│   ├── xz
│   └── zstd
│       ├── lz4
│       └── xz
├── double-conversion
├── fmt
├── gflags
├── glog
│   └── gflags
├── libevent
│   └── openssl@3
│       └── ca-certificates
├── libsodium
├── lz4
├── openssl@3
│   └── ca-certificates
├── snappy
├── xz
└── zstd
    ├── lz4
    └── xz

Blog

⚠️ **GitHub.com Fallback** ⚠️