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.
28 lines
773 B
Ruby
28 lines
773 B
Ruby
cask "airflow" do
|
|
version "3.3.5"
|
|
sha256 "8e180cb4809b250537824514fd376694e281543241856ac3996807d48700275b"
|
|
|
|
url "https://cdn.downloads.iocave.net/Airflow/Airflow%20#{version}.zip",
|
|
verified: "cdn.downloads.iocave.net/Airflow/"
|
|
name "Airflow"
|
|
desc "Watch local content on Apple TV and Chromecast"
|
|
homepage "https://airflowapp.com/"
|
|
|
|
livecheck do
|
|
url "https://airflowapp.com/download/latest?mac"
|
|
strategy :header_match
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :sierra"
|
|
|
|
app "Airflow.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/Airflow",
|
|
"~/Library/Caches/com.bitcavehq.Airflow",
|
|
"~/Library/Preferences/com.bitcavehq.Airflow.plist",
|
|
"~/Library/Saved Application State/com.bitcavehq.Airflow.savedState",
|
|
]
|
|
end
|