Was supposed to be a linux distribution, now just a collection of build scripts for packages on top of (ideally) any distribution.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

17 lines
533 B

name=ca-certificates
version=$(date +%Y%m%d)
dlfile "https://hg.mozilla.org/releases/mozilla-release/raw-file/default/security/nss/lib/ckfw/builtins/certdata.txt"
extrafile "make-ca.sh"
extrafile "make-cert.pl"
extrafile "remove-expired-certs.sh"
header_end
./make-ca.sh
./remove-expired-certs.sh certs
mkdir -p "$dir_install/tools/ssl/certs"
cp certs/*.pem "$dir_install/tools/ssl/certs"
c_rehash "$dir_install/tools/ssl/certs"
cp ca-certificates.crt "$dir_install/tools/ssl/certs"
# vim:set tabstop=4 shiftwidth=4 syntax=sh et: