mrrl

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

strace (713B)


      1 {%- set pkg_version="6.17" -%}
      2 {%- set pkg_source="tar.xz" -%}
      3 {% extends "autotools_static_mini" %}
      4 {% block package_deps -%}
      5 #+{{pkg_install_name("patch")}}
      6 #+{{pkg_install_name("libunwind")}}
      7 #@sha256:{{files["strace-6.5-static.patch"]}}:strace-6.5-static.patch
      8 {% endblock %}
      9 {% block prepare -%}
     10 {{ super() -}}
     11 patch -p1 <../strace-6.5-static.patch
     12 
     13 {% endblock %}
     14 {%- block configure_args %}--with-unwind --without-libdw --enable-mpers=check{% endblock %}
     15 {% block check -%}
     16 check_static command/strace
     17 
     18 {% endblock %}
     19 {% block genlinks_begin %}
     20 	x["./{{bindir}}/strace"]=1
     21 	x["./{{bindir}}/strace-log-merge"]=1
     22 	x["./{{mandir}}/man1/strace.1"]=1
     23 	x["./{{mandir}}/man1/strace-log-merge.1"]=1
     24 {% endblock %}