You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
719 B
24 lines
719 B
cask 'virtualbox-beta' do
|
|
version '5.1.21-115071'
|
|
sha256 '17283b4d834ff1e46e53fe93dba9820690295d4835821245a343e0528f52c254'
|
|
|
|
url "https://www.virtualbox.org/download/testcase/VirtualBox-#{version}-OSX.dmg"
|
|
name 'Oracle VirtualBox'
|
|
homepage 'https://www.virtualbox.org/wiki/Testbuilds'
|
|
|
|
auto_updates true
|
|
|
|
pkg 'VirtualBox.pkg'
|
|
|
|
uninstall script: {
|
|
executable: 'VirtualBox_Uninstall.tool',
|
|
args: %w[--unattended],
|
|
},
|
|
pkgutil: 'org.virtualbox.pkg.*'
|
|
|
|
zap delete: [
|
|
'/Library/Application Support/VirtualBox',
|
|
'~/Library/VirtualBox',
|
|
],
|
|
rmdir: '~/VirtualBox VMs'
|
|
end
|
|
|