summaryrefslogtreecommitdiffstats
path: root/examples/recipes/make_ext4fs/build.yml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/recipes/make_ext4fs/build.yml')
-rw-r--r--examples/recipes/make_ext4fs/build.yml44
1 files changed, 44 insertions, 0 deletions
diff --git a/examples/recipes/make_ext4fs/build.yml b/examples/recipes/make_ext4fs/build.yml
new file mode 100644
index 0000000..183389a
--- /dev/null
+++ b/examples/recipes/make_ext4fs/build.yml
@@ -0,0 +1,44 @@
+meta:
+ version: '2020-01-05-5c201be7d72aff735da27e17c29852e0cefe3e52'
+tasks:
+ unpack:
+ fetch:
+ - name: '{{name}}-{{version}}.tar.gz'
+ sha256: 'bfe984cc757c676639090a5b34bdfc359cdef9b723de77efbce590872dce4132'
+ run: |
+ tar xf {{dldir}}/{{name}}-{{version}}.tar.gz
+
+ compile:
+ args:
+ host: 'platform'
+ build_depends:
+ - recipe: 'toolchain'
+ task: 'build_depends'
+ depends:
+ - recipe: 'toolchain'
+ task: 'depends'
+ - recipe: 'zlib'
+ task: 'install'
+ parent:
+ task: 'unpack'
+ run: |
+ cd {{name}}-{{version}}
+ make
+
+ install:
+ args:
+ host: 'platform'
+ parent:
+ task: 'compile'
+ output:
+ default:
+ runtime_depends:
+ - recipe: 'toolchain'
+ task: 'depends'
+ - recipe: 'zlib'
+ task: 'install'
+ run: |
+ cd {{name}}-{{version}}
+ install -d {{destdir}}{{host.prefix}}/bin
+ install -m755 make_ext4fs {{destdir}}{{host.prefix}}/bin/
+