mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
26 lines
605 B
Ruby
26 lines
605 B
Ruby
cask "clop" do
|
|
version "2.4.0"
|
|
sha256 "46e36f68225540c53174c38c2131c0e80e2765c37fc37b22cf041e037615e5d2"
|
|
|
|
url "https://files.lowtechguys.com/releases/Clop-#{version}.dmg"
|
|
name "Clop"
|
|
desc "Image, video and clipboard optimiser"
|
|
homepage "https://lowtechguys.com/clop/"
|
|
|
|
livecheck do
|
|
url "https://files.lowtechguys.com/clop/appcast.xml"
|
|
strategy :sparkle
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :ventura"
|
|
|
|
app "Clop.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/Clop",
|
|
"~/Library/Caches/Clop",
|
|
"~/Library/Preferences/com.lowtechguys.Clop.plist",
|
|
]
|
|
end
|