mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
28 lines
682 B
Ruby
28 lines
682 B
Ruby
cask "rode-central" do
|
|
version "2.0.41"
|
|
sha256 :no_check
|
|
|
|
url "https://update.rode.com/central/RODE_Central_MACOS.zip"
|
|
name "Rode Central"
|
|
desc "RØDE companion app"
|
|
homepage "https://rode.com/en/apps/rode-central"
|
|
|
|
livecheck do
|
|
url "https://update.rode.com/rode-devices-manifest.json"
|
|
strategy :json do |json|
|
|
json["rode-central-manifest"]["macos"]["main-version"]["update-version"]
|
|
end
|
|
end
|
|
|
|
depends_on macos: ">= :catalina"
|
|
|
|
pkg "RØDE Central Installer (#{version}).pkg"
|
|
|
|
uninstall pkgutil: "com.rodecentral.installer"
|
|
|
|
zap trash: [
|
|
"~/Library/Caches/com.rode.rodecentral",
|
|
"~/Library/HTTPStorages/com.rode.rodecentral",
|
|
]
|
|
end
|