mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
The migration of `orka.rb` and then `o*.rb` has worked well without complaint so: let's move everything else, too.
27 lines
765 B
Ruby
27 lines
765 B
Ruby
cask "uxprotect" do
|
|
version "1.1.1"
|
|
sha256 "e6a0472e35d04cf719e8841c813ff0e155550ab47d2e05c3a426a6815f05fbc2"
|
|
|
|
url "https://digitasecurity.com/download/uxprotect/UXProtect#{version}.zip"
|
|
name "UXProtect"
|
|
homepage "https://digitasecurity.com/product/uxprotect/"
|
|
|
|
livecheck do
|
|
url "https://digitasecurity.com/product/uxprotect/appcast.xml"
|
|
strategy :sparkle
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :sierra"
|
|
|
|
app "UXProtect.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Scripts/com.digitasecurity.UXProtect",
|
|
"~/Library/Caches/KSCrash/UXProtect",
|
|
"~/Library/Caches/com.digitasecurity.UXProtect",
|
|
"~/Library/Containers/com.digitasecurity.UXProtect",
|
|
"~/Library/Preferences/com.digitasecurity.UXProtect.plist",
|
|
]
|
|
end
|