mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
30 lines
871 B
Ruby
30 lines
871 B
Ruby
cask "soundsource" do
|
|
version "5.6.3"
|
|
sha256 :no_check
|
|
|
|
url "https://rogueamoeba.com/soundsource/download/SoundSource.zip"
|
|
name "SoundSource"
|
|
desc "Sound and audio controller"
|
|
homepage "https://rogueamoeba.com/soundsource/"
|
|
|
|
livecheck do
|
|
url "https://rogueamoeba.net/ping/versionCheck.cgi?format=sparkle&system=1231&bundleid=com.rogueamoeba.soundsource&platform=osx&version=#{version.no_dots}8000"
|
|
strategy :sparkle
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :big_sur"
|
|
|
|
app "SoundSource.app"
|
|
|
|
uninstall quit: "com.rogueamoeba.soundsource"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/SoundSource",
|
|
"~/Library/Caches/com.rogueamoeba.soundsource",
|
|
"~/Library/HTTPStorages/com.rogueamoeba.soundsource",
|
|
"~/Library/Preferences/com.rogueamoeba.soundsource.plist",
|
|
"~/Library/WebKit/com.rogueamoeba.soundsource",
|
|
]
|
|
end
|