mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 22:06:36 -06:00
19 lines
678 B
Ruby
19 lines
678 B
Ruby
class CitrixReceiver < Cask
|
|
version 'latest'
|
|
sha256 :no_check
|
|
|
|
url 'http://downloadplugins.citrix.com.edgesuite.net/Mac/CitrixReceiverWeb.dmg'
|
|
homepage 'http://www.citrix.com/receiver'
|
|
|
|
install 'Install Citrix Receiver.pkg'
|
|
uninstall :launchctl => [
|
|
'com.citrix.AuthManager_Mac',
|
|
'com.citrix.ReceiverHelper',
|
|
'com.citrix.ServiceRecords',
|
|
],
|
|
:quit => [
|
|
'Citrix.ServiceRecords',
|
|
'com.citrix.ReceiverHelper',
|
|
],
|
|
:pkgutil => 'com.citrix.ICAClient'
|
|
end
|