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
716 B
Ruby
23 lines
716 B
Ruby
cask "reflector" do
|
|
version "4.1.0"
|
|
sha256 "88c59210d290abd21393c9711590c3f5ca5c5aee38568bb8f75d30031dc90089"
|
|
|
|
url "https://download.airsquirrels.com/Reflector#{version.major}/Mac/Reflector-#{version}.dmg"
|
|
name "Reflector"
|
|
desc "Wireless screen-mirroring application"
|
|
homepage "https://www.airsquirrels.com/reflector/"
|
|
|
|
livecheck do
|
|
url "https://updates-prod.airsquirrels.com/Reflector#{version.major}/Mac/updateCheck/"
|
|
strategy :sparkle, &:short_version
|
|
end
|
|
|
|
app "Reflector #{version.major}.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/Logs/Reflector*.log*",
|
|
"~/Library/Caches/com.squirrels.Reflector-*",
|
|
"~/Library/Preferences/com.squirrels.Reflector-*.plist",
|
|
]
|
|
end
|