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.
22 lines
577 B
Ruby
22 lines
577 B
Ruby
cask "colortester" do
|
|
version "1.0"
|
|
sha256 :no_check
|
|
|
|
url "https://alfasado.net/download/ColorTester_Mac.zip"
|
|
name "ColorTester"
|
|
homepage "https://alfasado.net/apps/colortester.html"
|
|
|
|
livecheck do
|
|
url :url
|
|
strategy :extract_plist
|
|
end
|
|
|
|
app "ColorTester/ColorTester.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Preferences/com.alfasado.colortester",
|
|
"~/Library/Preferences/com.alfasado.colortester.plist",
|
|
"~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/com.alfasado.colortester.sfl*",
|
|
]
|
|
end
|