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.
24 lines
473 B
Ruby
24 lines
473 B
Ruby
cask "adze" do
|
|
version "1.4.12"
|
|
sha256 :no_check
|
|
|
|
url "https://getadze.com/static/main/releases/Adze.zip"
|
|
name "Adze"
|
|
desc "Edit GPX documents"
|
|
homepage "https://getadze.com/"
|
|
|
|
livecheck do
|
|
url "https://getadze.com/static/main/updates/adze.xml"
|
|
strategy :sparkle, &:short_version
|
|
end
|
|
|
|
depends_on macos: ">= :sierra"
|
|
|
|
app "Adze.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Caches/com.Kobot.Adze",
|
|
"~/Library/Preferences/com.Kobot.Adze.plist",
|
|
]
|
|
end
|