mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
27 lines
697 B
Ruby
27 lines
697 B
Ruby
cask "mutedeck" do
|
|
arch arm: "-arm"
|
|
|
|
version "2.5"
|
|
sha256 :no_check
|
|
|
|
url "https://releases.mutedeck.com/macos#{arch}/mutedeck-mac#{arch}.dmg"
|
|
name "Mutedeck"
|
|
desc "Toggle mute, video, record, share, and leave a meeting in a call app"
|
|
homepage "https://mutedeck.com/"
|
|
|
|
livecheck do
|
|
url "https://mutedeck.canny.io/changelog"
|
|
regex(/Most\srecent\supdate:\sv(\d+(?:\.\d+)+)/i)
|
|
end
|
|
|
|
depends_on macos: ">= :big_sur"
|
|
|
|
installer manual: "MuteDeck-#{version}-Installer"
|
|
|
|
uninstall quit: "com.mutedeck.mac",
|
|
launchctl: "application.com.mutedeck.mac",
|
|
delete: "/Applications/MuteDeck"
|
|
|
|
zap trash: "~/Library/Application Support/mutedeck"
|
|
end
|