summaryrefslogtreecommitdiffstats
path: root/examples/recipes/linux/build.uapi-headers.yml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/recipes/linux/build.uapi-headers.yml')
-rw-r--r--examples/recipes/linux/build.uapi-headers.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/examples/recipes/linux/build.uapi-headers.yml b/examples/recipes/linux/build.uapi-headers.yml
new file mode 100644
index 0000000..a302aa9
--- /dev/null
+++ b/examples/recipes/linux/build.uapi-headers.yml
@@ -0,0 +1,19 @@
+tasks:
+ unpack:
+ fetch:
+ - name: '{{name}}-{{version}}.tar.xz'
+ sha256: '8cf10379f7df8ea731e09bff3d0827414e4b643dd41dc99d0af339669646ef95'
+ run: |
+ tar xf {{dldir}}/{{name}}-{{version}}.tar.xz
+
+ install:
+ args:
+ host: 'platform'
+ parent:
+ task: 'unpack'
+ output:
+ default: {}
+ run: |
+ cd {{name}}-{{version}}
+ make INSTALL_HDR_PATH={{destdir}}{{host.prefix}} ARCH={{host.karch}} headers_install
+