mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 06:16:47 -06:00
In #3431, we recently discovered that this form is valid to the DSL, but can exercise a bug at uninstall time.
9 lines
393 B
Ruby
9 lines
393 B
Ruby
class Dnscrypt < Cask
|
|
url 'http://download.dnscrypt.org/guis/opendns/osx/dnscrypt-osx-client-0.19.dmg'
|
|
homepage 'http://opendns.github.io/dnscrypt-osx-client/'
|
|
version '0.19'
|
|
sha256 '36b684cc1a90a540e8c38759f509914818a1d3ca0e374ea0ab82e259cb72e1ec'
|
|
install 'DNSCrypt.mpkg'
|
|
uninstall :pkgutil => 'com.opendns.osx.dnscryptClient.*',
|
|
:launchctl => 'com.opendns.osx.*'
|
|
end
|