mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-16 14:26:53 -06:00
Fix Style/ElseAlignment error in araxis-merge.rb Fix Lint/BlockAlignment error in jabber-video.rb Fix Style/IndentationConsistency error in tuneinstructor.rb Fix Style/MultilineIfThen error in wireshark.rb Fix Style/IndentationWidth errors Fix inconsistent indentation in blue-jeans-browser-plugin.rb and mini-vmac.rb Fix Style/SpaceAroundOperators error in myo-connect.rb Fix Style/SpaceBeforeComma erorrs in sencha.rb and srware-iron.rb Fix Style/Tab error in syphon-virtual-screen.rb Fix Style/TrailingWhitespace errors in various Casks
26 lines
1.3 KiB
Ruby
26 lines
1.3 KiB
Ruby
cask :v1 => 'jabber-video' do
|
|
version '4.8.8.18390'
|
|
sha256 '571375bb9fa9f01994633a9e395ec42c4b1869e28d5f5559678f9981c4af4a9c'
|
|
|
|
url "http://sjc1-movi-pr-download-vip.ciscojabbervideo.com/JabberVideo_#{version}.dmg"
|
|
homepage 'https://www.ciscojabbervideo.com/home'
|
|
license :closed
|
|
tags :vendor => 'Cisco Systems'
|
|
|
|
app 'Jabber Video.app'
|
|
|
|
postflight do
|
|
# Remove ForcedConfig.plist from App bundle. This plist prevents us from editing the internal, external servers and Sip domain
|
|
# See Cisco Jabber Video for Telepresence 4.8 Administrator Guide for more details
|
|
# http://www.cisco.com/c/en/us/td/docs/telepresence/endpoint/Jabber_Video/4_8/CJAB_BK_J4DBC2E7_00_jabber-video-admin-guide-4-8/CJAB_BK_J4DBC2E7_00_jabber-video-admin-guide-4-8_chapter_011.html#CJAB_TP_P465596C_00
|
|
system '/bin/rm', '--', "#{staged_path}/Jabber Video.app/Contents/Resources/ForcedConfig.plist"
|
|
end
|
|
|
|
zap :delete => [
|
|
'/Library/Preferences/com.cisco.JabberVideo.plist',
|
|
'~/Library/Preferences/com.cisco.JabberVideo.plist',
|
|
'~/Library/Application Support/Jabber Video',
|
|
'~/Library/Logs/Jabber Video',
|
|
],
|
|
:script => 'Jabber Video.app/Contents/SharedSupport/remove_user_data.sh'
|
|
end
|