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.
35 lines
1.5 KiB
Ruby
35 lines
1.5 KiB
Ruby
cask "epoccam" do
|
|
version "3.4.1"
|
|
sha256 "181be9b2508dbb4f085387336220835f1a82bfee5f0a58245804ce55a5c27344"
|
|
|
|
url "https://edge.elgato.com/egc/macos/epoccam/EpocCam_Installer_#{version.dots_to_underscores}.pkg"
|
|
name "EpocCam"
|
|
desc "Turn your phone into a webcam"
|
|
homepage "https://www.elgato.com/ww/en/s/downloads"
|
|
|
|
livecheck do
|
|
url "https://www.elgato.com/graphql?query=query%20contentJson(%24identifier%3A%5BString%5D%24contentType%3AString%24options%3AContentJsonOptionsInput)%7BcontentJson(identifiers%3A%24identifier%20contentType%3A%24contentType%20options%3A%24options)%7Bidentifier%20entries%7D%7D&operationName=contentJson&variables=%7B%22contentType%22%3A%22downloads%22%2C%22identifier%22%3A%5B%22downloads%22%5D%2C%22options%22%3A%7B%22level%22%3A1%7D%7D&locale=en-US"
|
|
strategy :page_match do |page|
|
|
match = page[/EpocCam[._-]Installer[._-]v?(\d+(?:[._]\d+)+)\.pkg/i, 1]
|
|
next if match.blank?
|
|
|
|
match.tr("_", ".")
|
|
end
|
|
end
|
|
|
|
pkg "EpocCam_Installer_#{version.dots_to_underscores}.pkg"
|
|
|
|
uninstall_preflight do
|
|
set_ownership "/Library/Audio/Plug-Ins/HAL/VirtualMic.driver"
|
|
set_ownership "/Library/CoreMediaIO/Plug-Ins/DAL/EpocCamPlugin.plugin"
|
|
end
|
|
|
|
uninstall launchctl: "com.kinoni.epoccam.daemon",
|
|
pkgutil: "com.kinoni.pkg.epoccam-installer",
|
|
trash: [
|
|
"/Library/Audio/Plug-Ins/HAL/VirtualMic.driver",
|
|
"/Library/CoreMediaIO/Plug-Ins/DAL/EpocCamPlugin.plugin",
|
|
"/Library/LaunchAgents/com.kinoni.epoccam.daemon.plist",
|
|
]
|
|
end
|