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.
23 lines
637 B
Ruby
23 lines
637 B
Ruby
cask "yo" do
|
|
version "2.0.1"
|
|
sha256 "115218ea1bf39e5aa301740d00a2b0e17a5f31c2bc2f4bff5becd2da77d791f7"
|
|
|
|
url "https://github.com/sheagcraig/yo/releases/download/#{version}/yo-#{version}.pkg"
|
|
name "Yo Scheduler"
|
|
desc "Utility to emit Notification Center messages from the command-line"
|
|
homepage "https://github.com/sheagcraig/yo"
|
|
|
|
pkg "yo-#{version}.pkg"
|
|
|
|
uninstall delete: "/usr/local/bin/yo_scheduler",
|
|
launchctl: [
|
|
"com.sheagcraig.yo.login_once",
|
|
"com.sheagcraig.yo.on_demand",
|
|
],
|
|
pkgutil: "com.sheagcraig.yo"
|
|
|
|
caveats do
|
|
discontinued
|
|
end
|
|
end
|