mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
27 lines
908 B
Ruby
27 lines
908 B
Ruby
cask "deltachat" do
|
|
version "1.42.2"
|
|
sha256 "cc78c69a613384e1cdd30481598479c24b5e82af5d55e5b7e818607d729c8942"
|
|
|
|
url "https://download.delta.chat/desktop/v#{version}/DeltaChat-#{version}.dmg"
|
|
name "DeltaChat"
|
|
desc "Chat via the e-mail server network"
|
|
homepage "https://delta.chat/"
|
|
|
|
livecheck do
|
|
url "https://delta.chat/en/download"
|
|
regex(/href=.*?DeltaChat[._-]v?(\d+(?:\.\d+)+)\.dmg/i)
|
|
end
|
|
|
|
app "DeltaChat.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Scripts/chat.delta.desktop.electron",
|
|
"~/Library/Application Support/CrashReporter/DeltaChat *_*.plist",
|
|
"~/Library/Application Support/DeltaChat",
|
|
"~/Library/Containers/chat.delta.desktop.electron",
|
|
"~/Library/Group Containers/*.chat.delta.desktop.electron",
|
|
"~/Library/Preferences/chat.delta.desktop.electron.plist",
|
|
"~/Library/Saved Application State/chat.delta.desktop.electron.savedState",
|
|
]
|
|
end
|