mrrl

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

strace (647B)


      1 {% extends "autotools" %}
      2 {%- block extra_deps %}
      3 #+{{pkg_install_name("patch")}}
      4 #+{{pkg_install_name("libunwind")}}
      5 #@untar:-J:sha256:e209daf0ee038ca5adcc4c277e9273b4d51f46a2ff86da575d36742ac3508a17:.
      6 #@sha256:{{files["strace-6.5-static.patch"]}}:strace-6.5-static.patch
      7 {%- endblock %}
      8 {% block at_script %}
      9 
     10 cd strace-6.13
     11 patch -p1 <../strace-6.5-static.patch
     12 autotools_static . --with-unwind --without-libdw --enable-mpers=check
     13 check_static command/strace
     14 
     15 {% endblock %}
     16 {% block genlinks_begin %}
     17 	x["./command/strace"]=1
     18 	x["./command/strace-log-merge"]=1
     19 	x["./man/man1/strace.1"]=1
     20 	x["./man/man1/strace-log-merge.1"]=1
     21 {% endblock %}