mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-16 22:06:43 -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
20 lines
663 B
Ruby
20 lines
663 B
Ruby
cask :v1 => 'blue-jeans-browser-plugin' do
|
|
version '2.85.47.8'
|
|
sha256 'b1444c3bf1ebd2d329e365e77ec4a19e5456c5ec9bfc0c2d8410952a889f56e8'
|
|
|
|
url "https://swdl.bluejeans.com/skinny/rbjnplugin_#{version}.pkg"
|
|
name 'Blue Jeans Browser Plug-in'
|
|
homepage 'http://bluejeans.com/'
|
|
license :gratis
|
|
|
|
container :type => :xar
|
|
|
|
# container :nested => 'Scripts' doesn't recognize a gzipped CPIO
|
|
preflight do
|
|
system '/usr/bin/tar', '-xf', "#{staged_path}/Scripts", '-C', staged_path
|
|
system '/bin/rm', '-f', '--', "#{staged_path}/Scripts"
|
|
end
|
|
|
|
internet_plugin "rbjninstallplugin_#{version}.plugin"
|
|
internet_plugin "rbjnplugin_#{version}.plugin"
|
|
end
|