mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
31 lines
925 B
Ruby
31 lines
925 B
Ruby
cask "pomatez" do
|
|
arch arm: "arm64", intel: "x64"
|
|
|
|
version "1.6.1"
|
|
sha256 arm: "3f14f57e915a2375ac7bd0fe3fb7d12c6448c1a37ac434630d50096f0114d04a",
|
|
intel: "c089bca32468f8401d588a53ab5856ce0fc93acd3d5c0a189b637f2652313a95"
|
|
|
|
url "https://github.com/zidoro/pomatez/releases/download/v#{version}/Pomatez-v#{version}-mac-#{arch}.dmg",
|
|
verified: "github.com/zidoro/pomatez/"
|
|
name "Pomatez"
|
|
desc "Pomodoro timer"
|
|
homepage "https://zidoro.github.io/pomatez"
|
|
|
|
livecheck do
|
|
url :url
|
|
strategy :github_latest
|
|
end
|
|
|
|
app "Pomatez.app"
|
|
|
|
uninstall signal: ["KILL", "application.com.roldanjr.pomatez"]
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/pomatez",
|
|
"~/Library/Application Support/CrashReporter/Pomatez_*.plist",
|
|
"~/Library/Logs/pomatez",
|
|
"~/Library/Preferences/com.roldanjr.pomatez.plist",
|
|
"~/Library/Saved Application State/com.roldanjr.pomatez.savedState",
|
|
]
|
|
end
|