homebrew-cask/Casks/vnc-server.rb

34 lines
1.1 KiB
Ruby

cask "vnc-server" do
version "7.0.1"
sha256 "6e11b777248fce80246f218db5075ffa5f5ca78cd7b36e04277d1c10d236697c"
url "https://downloads.realvnc.com/download/file/vnc.files/VNC-Server-#{version}-MacOSX-universal.pkg"
name "Real VNC Server"
desc "Remote desktop server application"
homepage "https://www.realvnc.com/"
livecheck do
url "https://www.realvnc.com/en/connect/download/vnc/macos/"
regex(%r{href=.*?/VNC[._-]Server[._-]v?(\d+(?:\.\d+)*)[._-]MacOSX[._-]universal\.pkg}i)
end
pkg "VNC-Server-#{version}-MacOSX-universal.pkg"
uninstall_preflight do
system_command "/Applications/RealVNC/Uninstall VNC Server.app/Contents/Resources/uninstaller.sh",
print_stderr: false, sudo: true
end
uninstall launchctl: [
"com.realvnc.vncserver",
"com.realvnc.vncserver.peruser",
],
pkgutil: "com.realvnc.vncserver.pkg"
zap trash: [
"/Library/Logs/vncserver.log.bak",
"~/Library/Saved Application State/com.realvnc.vnclicensewiz.savedState",
"~/Library/Saved Application State/com.realvnc.vncserver.savedState",
]
end