mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
29 lines
762 B
Ruby
29 lines
762 B
Ruby
cask "vsee" do
|
|
version "4.19.1,50895"
|
|
sha256 "72b93aa5d0b831d849a808b63fe4ecc61f5edce31e931283e8b9cb3c4b6b58f2"
|
|
|
|
url "https://d2q5hugz2rti4w.cloudfront.net/mac/#{version.csv.second}/vseemac.dmg",
|
|
verified: "d2q5hugz2rti4w.cloudfront.net/mac/"
|
|
name "VSee"
|
|
desc "Group video calls, screen sharing and instant messaging"
|
|
homepage "https://vsee.com/"
|
|
|
|
livecheck do
|
|
url "https://client.vsee.com/mac/appcast.xml"
|
|
strategy :sparkle
|
|
end
|
|
|
|
depends_on macos: ">= :catalina"
|
|
|
|
app "VSee.app"
|
|
|
|
uninstall delete: "~/Library/Internet Plug-Ins/VSeeHelper.plugin"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/VSee",
|
|
"~/Library/Caches/com.vsee.VSee",
|
|
"~/Library/Logs/VSee",
|
|
"~/Library/Preferences/com.vsee.VSee.plist",
|
|
]
|
|
end
|