mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
35 lines
1.0 KiB
Ruby
35 lines
1.0 KiB
Ruby
cask "blackhole-2ch" do
|
|
version "0.5.0"
|
|
sha256 "f042f31193a66d82e5a39afc429e3c1b8f1683f5996e7d8f9af5b6bb4603bfe6"
|
|
|
|
url "https://existential.audio/downloads/BlackHole2ch.v#{version}.pkg"
|
|
name "BlackHole 2ch"
|
|
desc "Virtual Audio Driver"
|
|
homepage "https://existential.audio/blackhole/"
|
|
|
|
# The upstream website doesn't provide version information. We check GitHub
|
|
# releases as a best guess of when a new version is released.
|
|
livecheck do
|
|
url "https://github.com/ExistentialAudio/BlackHole"
|
|
strategy :github_latest
|
|
end
|
|
|
|
pkg "BlackHole2ch.v#{version}.pkg"
|
|
|
|
uninstall_postflight do
|
|
system_command "/bin/launchctl",
|
|
args: [
|
|
"kickstart",
|
|
"-kp",
|
|
"system/com.apple.audio.coreaudiod",
|
|
],
|
|
sudo: true,
|
|
must_succeed: true
|
|
end
|
|
|
|
uninstall quit: "com.apple.audio.AudioMIDISetup",
|
|
pkgutil: "audio.existential.BlackHole2ch"
|
|
|
|
# No zap stanza required
|
|
end
|