mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
22 lines
634 B
Ruby
22 lines
634 B
Ruby
cask "drovio" do
|
|
version "3.5.2"
|
|
sha256 "4182975333ba7451bb144bc4c91321339f199e4bd329c8292fb41ffa3901b8a2"
|
|
|
|
url "https://repository.drovio.com/stable/drovio/macos_universal/#{version.major}.x/#{version}/drovio.dmg"
|
|
name "Drovio"
|
|
desc "Remote pair programming and team collaboration tool"
|
|
homepage "https://www.drovio.com/"
|
|
|
|
livecheck do
|
|
url "https://repository.drovio.com/stable/drovio/macos_universal/latest_version/release.json"
|
|
regex(/"version"\s*:\s*"(\d+(?:\.\d+)+)"/i)
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :mojave"
|
|
|
|
app "Drovio.app"
|
|
|
|
zap trash: "~/Library/Application Support/Drovio"
|
|
end
|