Commit | Line | Data |
---|---|---|
cbb118ca VM |
1 | # Description: Bundle of CA Root Certificates from Mozilla |
2 | # URL: http://curl.haxx.se/ca/ | |
3 | # Maintainer: CRUX System Team, core-ports at crux dot nu | |
4 | # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu | |
5 | ||
6 | name=ca-certificates | |
7 | version=20151026 | |
8 | release=1 | |
9 | source=(cacert.pem) | |
10 | ||
11 | build () { | |
12 | ||
13 | # see http://curl.haxx.se/docs/mk-ca-bundle.html how | |
14 | # to create the bundle from Mozillas data: | |
15 | # mk-ca-bundle.pl -p ALL:TRUSTED_DELEGATOR cacert.pem | |
16 | ||
17 | install -Dm 644 $SRC/cacert.pem $PKG/etc/ssl/cert.pem | |
18 | } |