mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
27 lines
712 B
Ruby
27 lines
712 B
Ruby
cask "latest" do
|
|
version "0.10"
|
|
sha256 "6ca03ce11c64248cad60ac602388459f1e405bc6ec8c19da293cdafee5136c7d"
|
|
|
|
url "https://max.codes/latest/#{version}.zip"
|
|
name "Latest"
|
|
desc "Utility that shows the latest app updates"
|
|
homepage "https://max.codes/latest"
|
|
|
|
livecheck do
|
|
url "https://max.codes/latest/update.xml"
|
|
strategy :sparkle, &:short_version
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :high_sierra"
|
|
|
|
app "Latest.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Caches/com.max-langer.Latest",
|
|
"~/Library/Cookies/com.max-langer.Latest.binarycookies",
|
|
"~/Library/Preferences/com.max-langer.Latest.plist",
|
|
"~/Library/Saved Application State/com.max-langer.Latest.savedState",
|
|
]
|
|
end
|