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.
25 lines
601 B
Ruby
25 lines
601 B
Ruby
cask "colorwell" do
|
|
version "7.3.9"
|
|
sha256 :no_check
|
|
|
|
url "https://sweetpproductions.com/products/colorwell/ColorWell.dmg"
|
|
name "ColorWell"
|
|
desc "Color picker and color palette generator"
|
|
homepage "https://colorwell.sweetpproductions.com/"
|
|
|
|
livecheck do
|
|
url "https://sweetpproductions.com/products/colorwell/appcast.xml"
|
|
strategy :sparkle
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :el_capitan"
|
|
|
|
app "ColorWell.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Scripts/com.sweetpproductions.ColorWell",
|
|
"~/Library/Containers/com.sweetpproductions.ColorWell",
|
|
]
|
|
end
|