forked from Homebrew/homebrew-cask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautofirma.rb
31 lines (26 loc) · 1.1 KB
/
autofirma.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
31
cask 'autofirma' do
version '1.6.5'
sha256 '4564893f65a1566ea82c131a63bb56b44dbd2bcc218b5ba501ebb6dc22634c79'
# estaticos.redsara.es/comunes/autofirma was verified as official when first introduced to the cask
url 'https://estaticos.redsara.es/comunes/autofirma/currentversion/AutoFirma_Mac.zip'
name 'AutoFirma'
homepage 'https://administracionelectronica.gob.es/ctt/clienteafirma'
pkg "AutoFirma_#{version.dots_to_underscores}.pkg"
# remove 'Autofirma ROOT' and '127.0.0.1' certificates from keychain (these were installed by pkg)
uninstall_postflight do
system_command '/usr/bin/security',
args: [
'delete-certificate',
'-c', 'AutoFirma ROOT'
],
sudo: true
system_command '/usr/bin/security',
args: [
'delete-certificate',
'-c', '127.0.0.1'
],
sudo: true
end
uninstall pkgutil: 'es.gob.afirma',
delete: '/Applications/AutoFirma.app'
end