forked from Homebrew/homebrew-cask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathavg-antivirus.rb
30 lines (26 loc) · 1.11 KB
/
avg-antivirus.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
cask 'avg-antivirus' do
version :latest
sha256 :no_check
# s-install.avcdn.net/mac-av was verified as official when first introduced to the cask
url 'https://s-install.avcdn.net/mac-av/10_10/AAVG/avg_mac_security_online.dmg'
name 'AVG Antivirus for Mac'
homepage 'https://www.avg.com/us-en/avg-antivirus-for-mac'
pkg 'Install AVG AntiVirus.pkg'
uninstall script: {
executable: '/Applications/AVGAntivirus.app/Contents/Backend/utils/com.avg.uninstall.app/Contents/Resources/uninstall.sh',
sudo: true,
},
pkgutil: 'com.avg.pkg.hub',
launchctl: [
'com.avg.hub',
'com.avg.hub.schedule',
'com.avg.hub.xpc',
]
zap trash: [
'/Library/Application Support/AVGAntivirus',
'/Library/Application Support/AVGHUB',
'~/Library/Application Support/AVGAntivirus',
'~/Library/Application Support/AVGHUB',
'~/Library/Logs/AVGHUB',
]
end