Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Sound Blaster Command App #83746

Merged
merged 7 commits into from
Jun 5, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions Casks/sound-blaster-command.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
cask 'sound-blaster-command' do
version '1.2.04 (31)'
sha256 'd1264448def6d13e94c9465ac67d8b7a473ac9838c519821e3cee443fe43b268'

url 'https://download.creative.com/manualdn/Applications/100300/SEwNEWcs2X/SBCMD_MAC_L11_1_02_04.dmg'
name 'Sound Blaster Command'
homepage 'https://support.creative.com/'

pkg 'INSTALL.pkg'

uninstall script: {

executable: '/Applications/Creative/Uninstaller.app/Contents/MacOS/Uninstaller',
Copy link
Member

@vitorgalvao vitorgalvao Aug 31, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ran-dall For future reference, we don’t allow this as an uninstall because it’s not a script, it invokes the uninstaller GUI which holds up the terminal indefinitely.

We’d need #24377 to use this.

must_succeed: true,
print_stderr: false,
},
rmdir: [
'/Applications/Creative',
]

zap trash: [
'~/Library/Application Support/Creative.SB-Command',
'~/Library/Application Support/Creative.SB-Command.logs',
'~/Library/Preferences/Creative.SB-Command.plist',
]
end