summaryrefslogtreecommitdiffstats
path: root/examples/recipes/mpfr.yml
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2021-11-03 17:15:36 +0100
committerMatthias Schiffer <mschiffer@universe-factory.net>2021-11-03 17:15:36 +0100
commitc40a4dcdcf46a0c01c97cf294384088b761d1ddf (patch)
tree2c89978f7484dd01b475ca2e67a5e01cb008e84f /examples/recipes/mpfr.yml
parent272a73cae03d7c5ae22ff94b935a1d37f437ebef (diff)
downloadrebel-c40a4dcdcf46a0c01c97cf294384088b761d1ddf.tar
rebel-c40a4dcdcf46a0c01c97cf294384088b761d1ddf.zip
examples: move version number to filename
Diffstat (limited to 'examples/recipes/mpfr.yml')
-rw-r--r--examples/recipes/mpfr.yml59
1 files changed, 0 insertions, 59 deletions
diff --git a/examples/recipes/mpfr.yml b/examples/recipes/mpfr.yml
deleted file mode 100644
index 61642ac..0000000
--- a/examples/recipes/mpfr.yml
+++ /dev/null
@@ -1,59 +0,0 @@
-meta:
- version: '4.1.0'
-tasks:
- unpack:
- fetch:
- - name: '{{pn}}-{{pv}}.tar.xz'
- sha256: '0c98a3f1732ff6ca4ea690552079da9c597872d30e96ec28414ee23c95558a7f'
- run: |
- tar xf {{dldir}}/{{pn}}-{{pv}}.tar.xz
-
- configure:
- args:
- host: 'platform'
- inherit:
- task: 'unpack'
- build_depends:
- - recipe: 'toolchain'
- task: 'build_depends'
- depends:
- - recipe: 'toolchain'
- task: 'depends'
- - recipe: 'gmp'
- task: 'install'
- run: |
- mkdir {{pn}}-build
- cd {{pn}}-build
- ../{{pn}}-{{pv}}/configure \
- --build={{build.gnu_triplet}} \
- --host={{host.gnu_triplet}} \
- --prefix={{host.prefix}}
- find -name config.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'
- - recipe: 'gmp'
- task: 'install'
- run: |
- cd {{pn}}-build
- make DESTDIR={{destdir}} install
- rm {{destdir}}{{host.prefix}}/lib/*.a
- rm {{destdir}}{{host.prefix}}/lib/*.la
-