You've already forked homebrew-cask
mirror of
https://github.com/encounter/homebrew-cask.git
synced 2026-03-30 11:16:45 -07:00
29 lines
1.0 KiB
Ruby
29 lines
1.0 KiB
Ruby
cask "breaktimer" do
|
|
version "0.9.0"
|
|
sha256 "b269cd26ca054e95f102ed8152cbdcd2d33a944afc5104fd821d4b335ac0c318"
|
|
|
|
url "https://github.com/tom-james-watson/breaktimer-app/releases/download/v#{version}/BreakTimer.dmg",
|
|
verified: "github.com/tom-james-watson/breaktimer-app/"
|
|
name "BreakTimer"
|
|
desc "Tool to manage periodic breaks"
|
|
homepage "https://breaktimer.app/"
|
|
|
|
auto_updates true
|
|
|
|
app "BreakTimer.app"
|
|
binary "#{appdir}/BreakTimer.app/Contents/MacOS/BreakTimer", target: "breaktimer"
|
|
|
|
uninstall quit: "com.tomjwatson.breaktimer",
|
|
launchctl: "com.tomjwatson.breaktimer.ShipIt"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/BreakTimer",
|
|
"~/Library/Caches/com.tomjwatson.breaktimer",
|
|
"~/Library/Caches/com.tomjwatson.breaktimer.ShipIt",
|
|
"~/Library/Logs/BreakTimer",
|
|
"~/Library/Preferences/ByHost/com.tomjwatson.breaktimer.ShipIt.*.plist",
|
|
"~/Library/Preferences/com.tomjwatson.breaktimer.plist",
|
|
"~/Library/Saved Application State/com.tomjwatson.breaktimer.savedState",
|
|
]
|
|
end
|