summaryrefslogtreecommitdiffstats
path: root/examples/recipes/zlib.yml
blob: 7146cdefae079e5d55421394426211291f5878d3 (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
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}}
      find -name configure.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