mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
27 lines
815 B
Ruby
27 lines
815 B
Ruby
cask "popclip" do
|
|
version "2023.9"
|
|
sha256 "7738694e8f174b480fd92a8cafa6f97ee205cc07c95f18495ab9141a793f573b"
|
|
|
|
url "https://pilotmoon.com/downloads/PopClip-#{version}.zip"
|
|
name "PopClip"
|
|
desc "Used to access context-specific actions when text is selected"
|
|
homepage "https://pilotmoon.com/popclip/"
|
|
|
|
livecheck do
|
|
url "https://softwareupdate.pilotmoon.com/update/popclip/appcast.xml"
|
|
strategy :sparkle, &:short_version
|
|
end
|
|
|
|
depends_on macos: ">= :catalina"
|
|
|
|
app "PopClip.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/com.pilotmoon.popclip",
|
|
"~/Library/Application Support/PopClip",
|
|
"~/Library/Caches/com.pilotmoon.popclip",
|
|
"~/Library/Preferences/com.pilotmoon.popclip.plist",
|
|
"~/Library/SyncedPreferences/com.apple.kvs/ChangeTokens/NoEncryption/PopClip",
|
|
]
|
|
end
|