homebrew-cask/Casks/vmware-fusion.rb

59 lines
3.1 KiB
Ruby
Raw Normal View History

2015-12-18 09:15:28 +08:00
cask 'vmware-fusion' do
2016-04-26 00:11:36 +08:00
version '8.1.1-3771013'
sha256 '29cad381a36374e58a85fb58f7aaad8cae41ad50ef07fdda0db6d782c95c0a95'
url "https://download3.vmware.com/software/fusion/file/VMware-Fusion-#{version}.dmg"
2015-01-12 03:49:35 +08:00
name 'VMware Fusion'
2015-06-29 14:32:18 +08:00
homepage 'https://www.vmware.com/products/fusion/'
license :commercial
2015-12-29 00:19:22 +08:00
auto_updates true
app 'VMware Fusion.app'
[WIP] Change artifact behavior to moving instead of symlinking (#13966) * Change app artifact to move instead of link First step towards change in installation behavior mentioned in [13201] * Fix handling of binaries linked from inside of app bundles Also adds `appdir` method for interpolation in stanzas * Change appdir to root Applications directory * Update 2-app tests * Refactor: add options, ivars to `Installer`, `Download` In preparation for upcoming changes, this commit cleans up some code. The commit includes: - In order to reduce unnecessary object passing, make both the `force` and `skip_cask_deps` option into instance variables of the `Installer` class - Introduce options hashes to initializers of both the `Installer` and `Download` class - When the `install --force` command enters the fetch phase, make it explicit in the code that fetching is never enforced in that case. - Update tests * Force overwrite artifacts on `--force` reinstall This commit changes the behavior of a `Moved` artifact such that if the target already exists, `brew cask install --force` will remove the existing target before moving the staged artifact. In that case, the warning message will say *overwriting* instead of *not moving*. The behavior of plain `brew cask install` remains unchanged; the same goes for the warning message for that case. * Change remaining artifacts to move instead of symlink * Update casks to use appdir in binary paths * Forcibly overwrite artifacts, modifying flags and using `sudo` if needed - This commit implements [the proposed behavior for `install --force`](https://github.com/caskroom/homebrew-cask/pull/13966#issuecomment-220830387) when a target already exists and has either permission problems or is not owned by the user. - The changes apply only when the `force` option is given. - Reused the existing safeguard from the `.pkg` artifact to prevent deleting important directories by bug or mistake - The two existing blacklists `SYSTEM_DIRS` and `UNDELETABLE_DIRS` have been consolidated into the `Hbc::MacOS` module. - `UNDELETABLE_DIRS` now also contains all the entries from `SYSTEM_DIRS` which was a to-do anyway. - The two blacklists are now also frozen for good measure. - The utility method `permissions_rmtree` was moved to `Hbc::Utils`. - The `tried_permissions` part in `Utils` now falls back correctly when there are also ownership issues at the same time. - Introduced a separate `current_user` method for mocking. - Added an optional feature to `FakeSystemCommand` so it can now act as a proxy to `SystemCommand`. - Added tests for various `permissions_rmtree` cases.
2016-06-01 03:23:21 +08:00
binary "#{appdir}/VMware Fusion.app/Contents/Library/vmnet-bridge"
binary "#{appdir}/VMware Fusion.app/Contents/Library/vmnet-cfgcli"
binary "#{appdir}/VMware Fusion.app/Contents/Library/vmnet-cli"
binary "#{appdir}/VMware Fusion.app/Contents/Library/vmnet-dhcpd"
binary "#{appdir}/VMware Fusion.app/Contents/Library/vmnet-natd"
binary "#{appdir}/VMware Fusion.app/Contents/Library/vmnet-netifup"
binary "#{appdir}/VMware Fusion.app/Contents/Library/vmnet-sniffer"
binary "#{appdir}/VMware Fusion.app/Contents/Library/vmrun"
binary "#{appdir}/VMware Fusion.app/Contents/Library/vmss2core"
binary "#{appdir}/VMware Fusion.app/Contents/Library/vmware-aewp"
binary "#{appdir}/VMware Fusion.app/Contents/Library/vmware-authd"
binary "#{appdir}/VMware Fusion.app/Contents/Library/vmware-cloneBootCamp"
binary "#{appdir}/VMware Fusion.app/Contents/Library/vmware-id"
binary "#{appdir}/VMware Fusion.app/Contents/Library/vmware-ntfs"
binary "#{appdir}/VMware Fusion.app/Contents/Library/vmware-rawdiskAuthTool"
binary "#{appdir}/VMware Fusion.app/Contents/Library/vmware-rawdiskCreator"
binary "#{appdir}/VMware Fusion.app/Contents/Library/vmware-remotemks"
binary "#{appdir}/VMware Fusion.app/Contents/Library/vmware-usbarbitrator"
binary "#{appdir}/VMware Fusion.app/Contents/Library/vmware-vdiskmanager"
binary "#{appdir}/VMware Fusion.app/Contents/Library/vmware-vmdkserver"
binary "#{appdir}/VMware Fusion.app/Contents/Library/vmware-vmx"
binary "#{appdir}/VMware Fusion.app/Contents/Library/vmware-vmx-debug"
binary "#{appdir}/VMware Fusion.app/Contents/Library/vmware-vmx-stats"
binary "#{appdir}/VMware Fusion.app/Contents/Library/VMware OVF Tool/ovftool"
2014-10-11 22:35:29 +08:00
2014-09-09 20:55:28 +08:00
uninstall_preflight do
set_ownership "#{appdir}/VMware Fusion.app"
end
2014-11-22 22:24:21 +08:00
zap delete: [
# note: '~/Library/Application Support/VMware Fusion' is not safe
# to delete. In older versions, VM images were located there.
'/Library/Preferences/VMware Fusion',
'~/Library/Caches/com.vmware.fusion',
'~/Library/Logs/VMware',
'~/Library/Logs/VMware Fusion',
'~/Library/Preferences/com.vmware.fusion.LSSharedFileList.plist',
'~/Library/Preferences/com.vmware.fusion.LSSharedFileList.plist.lockfile',
'~/Library/Preferences/com.vmware.fusion.plist',
'~/Library/Preferences/com.vmware.fusion.plist.lockfile',
'~/Library/Preferences/com.vmware.fusionDaemon.plist',
'~/Library/Preferences/com.vmware.fusionDaemon.plist.lockfile',
'~/Library/Preferences/com.vmware.fusionStartMenu.plist',
'~/Library/Preferences/com.vmware.fusionStartMenu.plist.lockfile',
]
2013-08-31 05:33:25 +08:00
end