26 lines
636 B
Ruby
26 lines
636 B
Ruby
cask "cleanclip" do
|
|
version "2.1.5"
|
|
sha256 "be68e70bd6f147e7284a75462c5a082efd88af2429f3566ed13ee1b85986cb16"
|
|
|
|
url "https://cleanclip.cc/releases/download/v#{version}/CleanClip.dmg"
|
|
name "CleanClip"
|
|
desc "Clipboard manager"
|
|
homepage "https://cleanclip.cc/"
|
|
|
|
livecheck do
|
|
url "https://cleanclip.cc/appcast.xml"
|
|
strategy :sparkle, &:short_version
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :monterey"
|
|
|
|
app "CleanClip.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/CleanClip",
|
|
"~/Library/Caches/com.antiless.cleanclip.mac",
|
|
"~/Library/Preferences/com.antiless.cleanclip.mac.plist",
|
|
]
|
|
end
|