homebrew-cask/Casks/nomachine.rb

27 lines
1.2 KiB
Ruby
Raw Normal View History

2014-11-14 01:26:30 +08:00
cask :v1 => 'nomachine' do
2014-11-22 22:51:04 +08:00
version '4.3.30_4'
sha256 'd2a84877f3e3ebd4ea935b3de52ebffc3e4fcb6e2f3e9ff3d2bfca441915784b'
2014-08-07 05:34:56 +08:00
url "http://download.nomachine.com/download/#{version.split('.')[0..1].join('.')}/MacOSX/nomachine_#{version}.dmg"
homepage 'http://www.nomachine.com'
license :unknown # todo: change license and remove this comment; ':unknown' is a machine-generated placeholder
2014-08-07 05:34:56 +08:00
2014-09-10 23:37:04 +08:00
pkg 'NoMachine.pkg'
# a launchctl job ordinarily manages uninstall once the app bundle is removed
2014-11-22 22:12:43 +08:00
2014-09-18 19:57:58 +08:00
uninstall :delete => '/Applications/NoMachine.app'
2014-09-13 22:23:02 +08:00
# however, we duplicate the uninstall process manually in the zap stanza just in case
zap :early_script => {
:executable => '/bin/rm',
:args => ['-f', '--', '/Library/Application Support/NoMachine/nxuninstall.sh']
},
:quit => 'com.nomachine.nxdock',
:kext => [
'com.nomachine.driver.nxau',
'com.nomachine.driver.nxtun',
'com.nomachine.kext.nxfs',
],
:pkgutil => 'com.nomachine.nomachine.NoMachine.*',
:launchctl => 'com.nomachine.uninstall'
2014-08-07 05:34:56 +08:00
end