homebrew-cask/Casks/autofirma.rb

32 lines
1.1 KiB
Ruby
Raw Normal View History

2017-06-28 08:37:10 +08:00
cask 'autofirma' do
2018-05-03 17:58:33 +08:00
version '1.6.2'
sha256 'dc97bebc453a9f79589ae8f1e8eae46596c659fc8f5d4d11c0f85c0b307246d4'
2017-06-28 08:37:10 +08:00
# 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'
2018-05-03 17:58:33 +08:00
pkg "AutoFirma_#{version.dots_to_underscores}.pkg"
2017-06-28 08:37:10 +08:00
# 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