Files
homebrew-cask/Casks/a/aircall.rb
2023-12-05 11:01:26 -05:00

29 lines
697 B
Ruby

cask "aircall" do
version "3.1.1"
sha256 "b37d13a3383af1dcb48de7197dab54510b6a5469b388e034b83d77895cd56c46"
url "https://download-electron.aircall.io/Aircall-#{version}.dmg"
name "Aircall"
desc "Cloud-based call center and phone system software"
homepage "https://aircall.io/"
livecheck do
url "https://aircall.io/api/app-infos/"
strategy :json do |json|
json["name"]
end
end
auto_updates true
depends_on macos: ">= :sierra"
app "Aircall.app"
zap trash: [
"~/Library/Application Support/Aircall",
"~/Library/Caches/io.aircall.phone",
"~/Library/Caches/io.aircall.phone.ShipIt",
"~/Library/Preferences/io.aircall.phone.plist",
]
end