phinze/homebrew-cask

View on GitHub
Casks/d/diffusionbee.rb

Summary

Maintainability
A
1 hr
Test Coverage
cask "diffusionbee" do
  arch arm: "arm64", intel: "intel"

  version "2.5.3"
  sha256 arm:   "1c6deb9f4c745ca86631cc830951b69d5359a13bad13e87e34712617881c2977",
         intel: "2917b6beeb1dc127a8ef041e2f29a96c74a09314b6baf95ae9a2b45ad0ae5fea"

  url "https://github.com/divamgupta/diffusionbee-stable-diffusion-ui/releases/download/#{version}/DiffusionBee_MPS_#{arch}-#{version}.dmg",
      verified: "github.com/divamgupta/diffusionbee-stable-diffusion-ui/"
  name "Diffusion Bee"
  desc "Run Stable Diffusion locally"
  homepage "https://diffusionbee.com/"

  livecheck do
    url :url
    strategy :github_latest
  end

  depends_on macos: ">= :monterey"

  app "DiffusionBee.app"

  zap trash: [
    "~/.diffusionbee",
    "~/Library/Application Support/DiffusionBee",
  ]
end