aboutsummarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 946beba8b21fb04cbf14f6f5d6c899f6c5fabfd7 (plain)
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
32
33
34
35
36
37
38
39
40
# Maintainer: Tiago Brait <tiagobrait AT gmail DOT com>

#2014 tiagobrait
pkgname=ca-certificates-icp_br
pkgver=20160216
pkgrel=1
pkgdesc="Brazilian government Certification Authorities"
arch=('any')
url="http://www.iti.gov.br/icp-brasil/certificados/188-atualizacao/4530-ac-raiz"
license=('GPL')
depends=('ca-certificates-utils')
makedepends=('unzip openssl')
install='ca-certificates-icp_br.install'
source=(
    'http://acraiz.icpbrasil.gov.br/credenciadas/CertificadosAC-ICP-Brasil/ACcompactado.zip'
    )

sha512sums=(
    '1f3bdf14719e9afd26ee156d7f374a4eb8bb2a6c7e53edd0e546e062d602c8acace82454aa056ac63e7b6906f22ec385866ef521431ae470f1d38a8c0577cc54'
    )

package() {
  local cert_tag='icp_br'
  cd ${srcdir}
  find * -print0 | while read -d $'\0' cert; do
  #some certificates have a .crt extension but come in DER format.
  #convert them
  if [[ "$(file $cert | cut -f2 -d\: | tr -d ' ')" = "data" ]]; then
    msg2 "converting $cert from DER to PEM..."
    cert_der="${cert}.der"
    mv $cert $cert_der
    /usr/bin/openssl x509 -in ${cert_der} -inform der -out $cert
    rm "$cert_der"
  fi
  #some of the cert files have spaces in their names, so just remove the spaces
  #when 'tagging' the certificates
  mv "$cert" "${cert_tag}.${cert//' '/'_'}"; done
  install -d -m0755 $pkgdir/etc/ca-certificates/trust-source/anchors
  install -m0644 *.crt $pkgdir/etc/ca-certificates/trust-source/anchors
}