core/ca-certificates/Pkgfile

24 lines
741 B
Plaintext
Raw Normal View History

2012-12-01 20:29:17 +01:00
# Description: Bundle of CA Root Certificates from Mozilla
2021-04-13 19:34:03 +02:00
# URL: https://curl.haxx.se/ca/
# Maintainer: CRUX System Team, core-ports at crux dot nu
2012-12-01 20:29:17 +01:00
name=ca-certificates
2022-10-11 12:38:31 +02:00
version=20221011
# Sun, 09 Oct 2022 23:32:24 +0000
2015-09-03 17:24:23 +02:00
release=1
2012-12-01 20:29:17 +01:00
source=(cacert.pem)
2021-04-13 19:34:03 +02:00
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
# As of version 20180620 we are using again the bundle
# from curl without modifications.
2022-07-19 21:11:56 +02:00
# https://curl.se/docs/caextract.html
# check commit date from here
# https://hg.mozilla.org/releases/mozilla-release/file/tip/security/nss/lib/ckfw/builtins/certdata.txt
2021-04-13 19:34:03 +02:00
install -Dm 644 $SRC/cacert.pem $PKG/etc/ssl/cert.pem
2012-12-01 20:29:17 +01:00
}