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
576 B
Ruby
23 lines
576 B
Ruby
cask "camera-live" do
|
|
version "11"
|
|
sha256 "4c7a6ecdbec677a6fbbb90af427e54b0d429278c87b49966c6448ce065c78e75"
|
|
|
|
url "https://github.com/v002/v002-Camera-Live/releases/download/#{version}/Camera.Live.zip"
|
|
name "Camera Live"
|
|
desc "Live Syphon Camera"
|
|
homepage "https://github.com/v002/v002-Camera-Live"
|
|
|
|
livecheck do
|
|
url :url
|
|
regex(/v?(\d+)/i)
|
|
strategy :github_latest
|
|
end
|
|
|
|
app "Camera Live.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Preferences/info.v002.Camera-Live.plist",
|
|
"~/Library/Saved Application State/info.v002.Camera-Live.savedState",
|
|
]
|
|
end
|