summaryrefslogtreecommitdiffstats
path: root/examples/recipes/gmp.yml
blob: 9575edd91ef2515b198831982c6b73425e67a199 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
meta:
  version: '6.2.1'
tasks:
  unpack:
    fetch:
      - name: '{{pn}}-{{pv}}.tar.lz'
        sha256: '2c7f4f0d370801b2849c48c9ef3f59553b5f1d3791d070cffb04599f9fc67b41'
    run: |
      tar xf {{dldir}}/{{pn}}-{{pv}}.tar.lz

  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 \
        --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'
    run: |
      cd {{pn}}-build
      make DESTDIR={{destdir}} install
      rm {{destdir}}{{host.prefix}}/lib/*.a
      rm {{destdir}}{{host.prefix}}/lib/*.la