summaryrefslogtreecommitdiffstats
path: root/examples/zlib.yml
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2021-10-02 23:26:34 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2021-10-02 23:26:34 +0200
commit24c5dde75192a2358dca2b16ef3a79079e4da504 (patch)
tree7046d8e1982d7ee57722ce94f1570bc78d685472 /examples/zlib.yml
parent87ce3429acc0d9fde5773b82e04325189f3aeb42 (diff)
downloadrebel-24c5dde75192a2358dca2b16ef3a79079e4da504.tar
rebel-24c5dde75192a2358dca2b16ef3a79079e4da504.zip
examples: add recipes for zlib, gmp, mpfr and mpc
These are dependencies of gcc.
Diffstat (limited to 'examples/zlib.yml')
-rw-r--r--examples/zlib.yml51
1 files changed, 51 insertions, 0 deletions
diff --git a/examples/zlib.yml b/examples/zlib.yml
new file mode 100644
index 0000000..d84451e
--- /dev/null
+++ b/examples/zlib.yml
@@ -0,0 +1,51 @@
+meta:
+ version: '1.2.11'
+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}}
+
+ compile:
+ args:
+ host: 'platform'
+ inherit:
+ task: 'configure'
+ run: |
+ cd {{pn}}-build
+ make -j8
+
+ 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
+