mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
52 lines
1.8 KiB
Ruby
52 lines
1.8 KiB
Ruby
cask "steelseries-gg" do
|
|
version "52.0.0"
|
|
sha256 "e80678126fde3c2d12142101b2b61c15463336f062e5e0fda94e5e9a32b2d88b"
|
|
|
|
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",
|
|
"com.highpoint-tech.kext.HighPointIOP",
|
|
"com.highpoint-tech.kext.HighPointRR",
|
|
],
|
|
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
|