mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
29 lines
728 B
Ruby
29 lines
728 B
Ruby
cask "zappy" do
|
|
version "4.6.0"
|
|
sha256 "ed662800132416ce48f3020bf99a87903a3e65ce8c46bb49b1d98e7e3cb4dd10"
|
|
|
|
url "https://zappy.zapier.com/releases/zappy-#{version}.dmg"
|
|
name "Zappy"
|
|
desc "Screen capture tool for remote teams"
|
|
homepage "https://zapier.com/zappy"
|
|
|
|
livecheck do
|
|
url "https://zappy.zapier.com/releases/appcast.xml"
|
|
strategy :sparkle, &:short_version
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :high_sierra"
|
|
|
|
app "Zappy.app"
|
|
|
|
uninstall quit: "com.blackbeltlabs.Zappy"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/com.blackbeltlabs.Zappy",
|
|
"~/Library/Caches/com.blackbeltlabs.Zappy",
|
|
"~/Library/Preferences/com.blackbeltlabs.Zappy.plist",
|
|
"~/Library/zappy",
|
|
]
|
|
end
|