24 lines
642 B
Ruby
24 lines
642 B
Ruby
cask "astro-command-center" do
|
|
version :latest
|
|
sha256 :no_check
|
|
|
|
url "https://update.astrogaming.com/kuiper/ASTROCommandCenter.dmg"
|
|
name "ASTRO Command Center"
|
|
desc "Full configuration of the adjustable settings for ASTRO devices"
|
|
homepage "https://www.astrogaming.com/"
|
|
|
|
livecheck do
|
|
skip "unversioned QT application"
|
|
end
|
|
|
|
depends_on macos: ">= :mojave"
|
|
|
|
app "ASTRO Command Center.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/Astro Gaming",
|
|
"~/Library/Preferences/com.http-www-astrogaming-com.ASTRO Command Center.plist",
|
|
"~/Library/Saved Application State/com.astrogaming.acc.savedState",
|
|
]
|
|
end
|