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.
24 lines
532 B
Ruby
24 lines
532 B
Ruby
cask "nomad" do
|
|
version "1.2.2"
|
|
sha256 :no_check
|
|
|
|
url "https://files.nomad.menu/NoMAD.pkg"
|
|
name "NoMAD"
|
|
homepage "https://nomad.menu/"
|
|
|
|
livecheck do
|
|
url "https://nomad.menu/support/"
|
|
regex(/NoMAD\s+Downloads[^<]*Current\s+Version\s+(\d+(?:\.\d+)+)/i)
|
|
end
|
|
|
|
pkg "NoMAD.pkg"
|
|
|
|
uninstall pkgutil: "com.trusourcelabs.NoMAD"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/CrashReporter/NoMAD*",
|
|
"~/Library/Logs/DiagnosticReports/NoMAD*",
|
|
"~/Library/Preferences/com.trusourcelabs.NoMAD.plist",
|
|
]
|
|
end
|