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.
29 lines
959 B
Ruby
29 lines
959 B
Ruby
cask "mumble" do
|
|
version "1.4.287"
|
|
sha256 "4294f6a1216f201c66cb94e6753d61df6f39c6a51041a9c746c6dda9f591e107"
|
|
|
|
url "https://github.com/mumble-voip/mumble/releases/download/v#{version}/mumble_client-#{version}.x64.dmg",
|
|
verified: "github.com/mumble-voip/mumble/"
|
|
name "Mumble"
|
|
desc "Open-source, low-latency, high quality voice chat software for gaming"
|
|
homepage "https://wiki.mumble.info/wiki/Main_Page"
|
|
|
|
livecheck do
|
|
url "https://dl.mumble.info/latest/stable/client-macos-x64"
|
|
strategy :header_match
|
|
end
|
|
|
|
conflicts_with cask: "homebrew/cask-versions/mumble-snapshot"
|
|
depends_on macos: ">= :high_sierra"
|
|
|
|
app "Mumble.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/Mumble",
|
|
"~/Library/Logs/Mumble.log",
|
|
"~/Library/Preferences/net.sourceforge.mumble.Mumble.plist",
|
|
"~/Library/Saved Application State/net.sourceforge.mumble.Mumble.savedState",
|
|
"/Library/ScriptingAdditions/MumbleOverlay.osax",
|
|
]
|
|
end
|