mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-16 22:06:43 -06:00
From https://www.virtualbox.org/wiki/Downloads: "The binaries are released under the terms of the GPL version 2."
13 lines
465 B
Ruby
13 lines
465 B
Ruby
cask :v1 => 'virtualbox' do
|
|
version '4.3.20-96996'
|
|
sha256 '744e77119a640a5974160213c9912568a3d88dbd06a2fc6b6970070941732705'
|
|
|
|
url "http://download.virtualbox.org/virtualbox/#{version.gsub(/-.*/, '')}/VirtualBox-#{version}-OSX.dmg"
|
|
homepage 'http://www.virtualbox.org'
|
|
license :gpl
|
|
|
|
pkg 'VirtualBox.pkg'
|
|
|
|
uninstall :script => { :executable => 'VirtualBox_Uninstall.tool', :args => %w[--unattended] },
|
|
:pkgutil => 'org.virtualbox.pkg.*'
|
|
end
|