BrewBar/Casks/brewbar.rb
maxsoch 73e0db3519 cask: document quarantine removal, --no-quarantine no longer exists
Recent Homebrew removed the --no-quarantine option entirely, so the
install docs and cask now instruct clearing the quarantine attribute
with xattr after install/upgrade. The cask prints it as a caveat at
install time.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-07 06:38:10 +02:00

27 lines
768 B
Ruby

cask "brewbar" do
version "1.0"
sha256 "f6f0154b72142f8e65e9ae5c41bef8fd982de9549ef67c307835c17e2aa37729"
url "https://forgejo.socheleau.fr/maxsoch/BrewBar/releases/download/v#{version}/BrewBar-#{version}.zip"
name "BrewBar"
desc "Menu bar app to monitor and upgrade Homebrew packages"
homepage "https://forgejo.socheleau.fr/maxsoch/BrewBar"
depends_on macos: :ventura
app "BrewBar.app"
zap trash: [
"~/Library/Application Support/BrewBar",
"~/Library/Preferences/com.MaxSoch.BrewBar.plist",
]
caveats <<~EOS
BrewBar is not notarized. On any Mac that did not build it, clear the
quarantine flag after install or upgrade, or Gatekeeper will block it:
xattr -dr com.apple.quarantine /Applications/BrewBar.app
EOS
end