homebrew-cask/Casks/home-assistant.rb

34 lines
1.2 KiB
Ruby

cask "home-assistant" do
version "2021.12,2021.322"
sha256 "1db877a0b269442c479dc6cf4be737f9ee064612e6bdec9197bb1006f45cd5b5"
url "https://github.com/home-assistant/iOS/releases/download/release%2F#{version.csv.first}%2F#{version.csv.second}/home-assistant-mac.zip",
verified: "github.com/home-assistant/iOS/"
name "Home Assistant"
desc "Companion app for Home Assistant home automation software"
homepage "https://companion.home-assistant.io/"
# We use the GitHubLatest strategy as Home Assistant also tags pre-releases, and
# we also specify a regex since tags are unconventional, e.g. `2021.2.2/2021.55`,
# and use a custom block to replace the slash with a comma in the resulting version
livecheck do
url :url
strategy :github_latest do |page|
version = page.match(%r{href=".+/tree/(?:mac|release)/([\d.]+)/([\d.]+)"}i)
next if version.blank?
"#{version[1]},#{version[2]}"
end
end
depends_on macos: ">= :catalina"
app "Home Assistant.app"
zap trash: [
"~/Library/Application Scripts/io.robbie.HomeAssistant",
"~/Library/Group Containers/group.io.robbie.homeassistant",
"~/Library/Containers/io.robbie.HomeAssistant",
]
end