# Description: Bundle of CA Root Certificates from Mozilla
# URL:         http://curl.haxx.se/ca/
# Maintainer:  CRUX System Team, core-ports at crux dot nu

name=ca-certificates
version=20180307
release=1
source=(cacert.pem)

build () {

    # see http://curl.haxx.se/docs/mk-ca-bundle.html how
    # to create the bundle from Mozillas data:
    # mk-ca-bundle.pl -p ALL:TRUSTED_DELEGATOR cacert.pem

    install -Dm 644 $SRC/cacert.pem $PKG/etc/ssl/cert.pem
}

