tasks: unpack: fetch: - name: '{{pn}}-{{pv}}.tar.gz' sha256: 'c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1' run: | tar xf {{dldir}}/{{pn}}-{{pv}}.tar.gz configure: args: host: 'platform' inherit: task: 'unpack' build_depends: - recipe: 'toolchain' task: 'build_depends' depends: - recipe: 'toolchain' task: 'depends' run: | mkdir {{pn}}-build cd {{pn}}-build ../{{pn}}-{{pv}}/configure \ --prefix={{host.prefix}} find -name configure.log -delete compile: args: host: 'platform' inherit: task: 'configure' run: | cd {{pn}}-build make install: args: host: 'platform' inherit: task: 'compile' output: default: runtime_depends: - recipe: 'toolchain' task: 'depends' run: | cd {{pn}}-build make DESTDIR={{destdir}} install rm {{destdir}}{{host.prefix}}/lib/*.a