homebrew-cask-versions/Casks/dnscrypt.rb
Roland Walker 48bd53561f Correct uninstall :launchctl for dnscrypt.rb
`:launchctl` does not support wildcards, and the pattern would
have been incorrect in any case.

Closes #4800
2014-06-27 16:03:54 -04:00

16 lines
756 B
Ruby

class Dnscrypt < Cask
version '1.0.3'
sha256 '08fc0ee0a029a1a99ffc44a0cb5f7f844f41e7fb0a30e31fea714ac103d69557'
url 'https://github.com/alterstep/dnscrypt-osxclient/releases/download/1.0.3/dnscrypt-osxclient-1.0.3.dmg'
homepage 'http://opendns.github.io/dnscrypt-osx-client/'
install 'DNSCrypt.mpkg'
uninstall :pkgutil => 'com.opendns.osx.dnscryptClient.*',
:launchctl => [
'com.github.dnscrypt-osxclient.DNSCryptAfterboot',
'com.github.dnscrypt-osxclient.DNSCryptConsoleChange',
'com.github.dnscrypt-osxclient.DNSCryptControlChange',
'com.github.dnscrypt-osxclient.DNSCryptNetworkChange',
]
end