mrrl

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

bsd-compat-headers (531B)


      1 {%- set src_dir="." -%}
      2 {% extends "genlinks_mini" %}
      3 {% block package_deps -%}
      4 #@sha256:{{files["cdefs.h"]}}:cdefs.h
      5 #@sha256:{{files["queue.h"]}}:queue.h
      6 #@sha256:{{files["tree.h"]}}:tree.h
      7 {% endblock package_deps %}
      8 {% block build_and_install -%}
      9 mkdir -p "$dest"/{{includedir|shesc}}
     10 install -Dm644 -t "$dest"/{{includedir|shesc}}/sys ./*.h
     11 {% endblock build_and_install %}
     12 {% block genlinks_begin %}
     13 	x["./{{includedir}}/sys/cdefs.h"]=1
     14 	x["./{{includedir}}/sys/queue.h"]=1
     15 	x["./{{includedir}}/sys/tree.h"]=1
     16 {% endblock %}