mrrl

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

openssl (637B)


      1 {% extends "genlinks" %}
      2 {%- block script %}
      3 #+{{pkg_install_name("busybox")}}
      4 #+{{pkg_install_name("gnu-make")}}
      5 #+{{pkg_install_name("musl-cross-make")}}
      6 #@untar:-z:sha256:712590fd20aaa60ec75d778fe5b810d6b829ca7fb1e530577917a131f9105539:.
      7 
      8 {% include "functions/build_env_static" %}
      9 build_env_static
     10 cd openssl-3.3.3
     11 ./config  # this will fail, perl is not packaged
     12 {{make}} install
     13 check_static command/openssl
     14 check_static command/ocspcheck
     15 
     16 {% endblock %}
     17 {% block genlinks_begin %}
     18 	x["./command/openssl"]=1
     19 	x["./command/ocspcheck"]=1
     20 	x["./man/man1/openssl.1"]=1
     21 	x["./library/libssl.a"]=1
     22 	x["./include/tls.h"]=1
     23 {% endblock %}