# `macdeploycheck` (local Homebrew formula) This repository includes a small helper tool called `macdeploycheck`, packaged as a local Homebrew formula. ## What it does `macdeploycheck` scans a built `.app` bundle and flags common **accidental runtime dependencies** on: - Homebrew paths like `/opt/homebrew/...` or `/usr/local/...` - MacPorts paths like `/opt/local/...` These dependencies usually mean the `.app` is **not self-contained** and may fail to run on other machines or fail notarization validation. ## Install (via this repo's tap) From the Strawberry repo root: ```bash brew tap strawberry/local "file://$PWD" brew install strawberry/local/macdeploycheck ``` Or use the repo `Brewfile`: ```bash brew bundle --file Brewfile ``` ## Use ```bash macdeploycheck /path/to/Strawberry.app ``` It exits non-zero if it finds external runtime deps.