homebrew-cask/Casks/nomachine.rb

28 lines
1.2 KiB
Ruby

cask :v1 => 'nomachine' do
version '4.5.0_1'
sha256 '95cea2de7eae19350547ac77ee1e3eb8c5160426ae50a3097c4fa9cb685624f9'
url "http://download.nomachine.com/download/#{version.split('.')[0..1].join('.')}/MacOSX/nomachine_#{version}.dmg"
name 'NoMachine'
homepage 'http://www.nomachine.com'
license :unknown # todo: change license and remove this comment; ':unknown' is a machine-generated placeholder
pkg 'NoMachine.pkg'
# a launchctl job ordinarily manages uninstall once the app bundle is removed
uninstall :delete => '/Applications/NoMachine.app'
# 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'
end