mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
28 lines
758 B
Ruby
28 lines
758 B
Ruby
cask "nozbe" do
|
|
version "2023.37"
|
|
sha256 "c8212fe206d72ff2eb24c476f8acad05b6b128d78717f8d80beba137075e9003"
|
|
|
|
url "https://builds.nozbe.com/mac/#{version}/Nozbe.app.zip"
|
|
name "Nozbe"
|
|
desc "Project management app"
|
|
homepage "https://nozbe.com/"
|
|
|
|
livecheck do
|
|
url "https://nozbe.help/general/release-notes"
|
|
regex(/id=["']newest["'][^>]*?>\s*version\s*(\d+(?:\.\d+)+)/i)
|
|
end
|
|
|
|
depends_on macos: ">= :big_sur"
|
|
|
|
app "Nozbe.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/Nozbe4",
|
|
"~/Library/Caches/com.nozbe4mac",
|
|
"~/Library/Caches/com.nozbe4mac.ShipIt",
|
|
"~/Library/HTTPStorages/com.nozbe4mac",
|
|
"~/Library/Preferences/com.nozbe4mac.plist",
|
|
"~/Library/Saved Application State/com.nozbe4mac.savedState",
|
|
]
|
|
end
|