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
703 B
Ruby
25 lines
703 B
Ruby
cask "mqtt-explorer" do
|
|
version "0.3.5"
|
|
sha256 "4322a9127c3ce9025d33afa3ff91e76e8873fff260493a112eadc4769c027778"
|
|
|
|
url "https://github.com/thomasnordquist/MQTT-Explorer/releases/download/v#{version}/MQTT-Explorer-#{version}-mac.zip",
|
|
verified: "github.com/thomasnordquist/MQTT-Explorer/"
|
|
name "MQTT Explorer"
|
|
homepage "https://mqtt-explorer.com/"
|
|
|
|
livecheck do
|
|
url :url
|
|
strategy :github_latest
|
|
end
|
|
|
|
app "MQTT Explorer.app"
|
|
|
|
uninstall quit: "de.t7n.apps.mqtt-explorer"
|
|
|
|
zap trash: [
|
|
"~/Library/Containers/de.t7n.apps.mqtt-explorer",
|
|
"~/Library/Group Containers/*.de.t7n.apps.mqtt-explorer",
|
|
"~/Library/Application Scripts/de.t7n.apps.mqtt-explorer",
|
|
]
|
|
end
|