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.
25 lines
634 B
Ruby
25 lines
634 B
Ruby
cask "dixa" do
|
|
version "4.0.12"
|
|
sha256 "a4e1a30d074e724ba24e9e2674a72bc4050f00161fb7dc23295a2c189ecda5bb"
|
|
|
|
url "https://github.com/dixahq/dixa-desktop-app-release/releases/download/v#{version}/dixa-#{version}.dmg",
|
|
verified: "github.com/dixahq/dixa-desktop-app-release/"
|
|
name "Dixa"
|
|
desc "Customer service platform"
|
|
homepage "https://dixa.com/"
|
|
|
|
livecheck do
|
|
url :url
|
|
strategy :github_latest
|
|
end
|
|
|
|
app "Dixa.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/Dixa",
|
|
"~/Library/Logs/Dixa",
|
|
"~/Library/Preferences/dixa.plist",
|
|
"~/Library/Saved Application State/dixa.savedState",
|
|
]
|
|
end
|