BrewBar/Casks/brewbar.rb
maxsoch 3f130af56a re-release as 0.1: app is still pre-release quality
Replace the premature 1.0 with 0.1 to signal beta status. Document the
0.x version scheme and the brew-never-downgrades caveat in RELEASING.md.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-09 18:52:17 +02:00

27 lines
768 B
Ruby

cask "brewbar" do
version "0.1"
sha256 "5b37d2457d12ca42f61d3d95476987e965b3d56927c35be68abc91b047294a88"
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