48 lines
1.7 KiB
Ruby
48 lines
1.7 KiB
Ruby
cask "steelseries-gg" do
|
|
version "64.0.0"
|
|
sha256 "842b65fd7a0453dd82e2b329e19a744e279b2101d7f852f6ba5d9e3de42d898e"
|
|
|
|
url "https://engine.steelseriescdn.com/SteelSeriesGG#{version}.pkg",
|
|
verified: "engine.steelseriescdn.com/"
|
|
name "SteelSeries GG #{version.major}"
|
|
desc "Settings for SteelSeries peripherals and accessories"
|
|
homepage "https://steelseries.com/gg"
|
|
|
|
livecheck do
|
|
url "https://steelseries.com/gg/downloads/gg/latest/darwin"
|
|
strategy :header_match
|
|
end
|
|
|
|
auto_updates true
|
|
conflicts_with cask: "steelseries-engine"
|
|
depends_on macos: ">= :sierra"
|
|
|
|
pkg "SteelSeriesGG#{version}.pkg"
|
|
|
|
uninstall launchctl: "com.steelseries.SSENext",
|
|
quit: [
|
|
"com.steelseries.gg.client.*",
|
|
"com.steelseries.gg.uninstaller",
|
|
"com.steelseries.SteelSeries-GG",
|
|
],
|
|
kext: "com.steelseries.ssenext.driver",
|
|
script: {
|
|
executable: "/Applications/SteelSeries GG/SteelSeries GG Uninstaller.app/Contents/Resources/Uninstall.sh",
|
|
sudo: true,
|
|
},
|
|
pkgutil: "com.steelseries.*",
|
|
delete: [
|
|
"/Applications/SteelSeries GG/SteelSeries GG.app",
|
|
"/Library/Application Support/SteelSeries GG",
|
|
]
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/steelseries-gg-client",
|
|
"~/Library/Caches/com.steelseries.SteelSeries-GG",
|
|
"~/Library/Preferences/com.steelseries.gg.client.plist",
|
|
"~/Library/Preferences/com.steelseries.SteelSeries-GG.plist",
|
|
"~/Library/Saved Application State/com.steelseries.gg.client.savedState",
|
|
"~/Library/Saved Application State/com.steelseries.gg.uninstaller.savedState",
|
|
]
|
|
end
|