mrrl

Minimal Reliable Reproducible Linux
git clone https://ccx.te2000.cz/git/mrrl
Log | Files | Refs | Submodules | README

ca-certificates-wip-donotuse (807B)


      1 {%- set src_dir="ca-certificates-20241121" -%}
      2 {% extends "genlinks" %}
      3 {% block package_deps -%}
      4 #+{{pkg_install_name("certdata2pem")}}
      5 #@untar:-j:sha256:6ef7bc56cc0e0b307d99a3c494119686091cc1d4ad08986d68aa089dd00c7788:.
      6 {% endblock %}
      7 {% block build -%}
      8 touch blacklist.txt  # TODO!
      9 certdata2pem
     10 
     11 {% endblock %}
     12 {% block install -%}
     13 install -d "${dest}/config/ssl/certs"
     14 for file in ./*.crt; do
     15 	install -m 644 $file  "${dest}/config/ssl/certs"
     16 	printf '# %s\n' $file >>"${dest}/config/ssl/certs/ca-certificates.crt"
     17 	cat $file >>"${dest}/config/ssl/certs/ca-certificates.crt"
     18 done
     19 
     20 {% endblock %}
     21 {% block genlinks_rules %}
     22 $2 == "config" { link($0); next }
     23 {% endblock -%}
     24 {% block genlinks_begin %}
     25 	x["./config/ssl/certs/ISRG_Root_X1.crt"]=1
     26 	x["./config/ssl/certs/ISRG_Root_X2.crt"]=1
     27 {% endblock %}