summaryrefslogtreecommitdiffstats
path: root/examples/recipes/zlib/build.yml
blob: 3e728440aded175a138884c341165133f25b3b05 (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.3'
tasks:
  unpack:
    fetch:
      - name: '{{name}}-{{version}}.tar.gz'
        sha256: 'ff0ba4c292013dbc27530b3a81e1f9a813cd39de01ca5e0f8bf355702efa593e'
    run: |
      tar xf {{dldir}}/{{name}}-{{version}}.tar.gz

  configure:
    args:
      host: 'platform'
    parent:
      task: 'unpack'
    build_depends:
      - recipe: 'toolchain'
        task: 'build_depends'
    depends:
      - recipe: 'toolchain'
        task: 'depends'
    run: |
      mkdir {{name}}-build
      cd {{name}}-build
      ../{{name}}-{{version}}/configure \
        --prefix={{host.prefix}}
      find -name configure.log -delete

  compile:
    args:
      host: 'platform'
    parent:
      task: 'configure'
    run: |
      cd {{name}}-build
      make

  install:
    args:
      host: 'platform'
    parent:
      task: 'compile'
    output:
      default:
        runtime_depends:
          - recipe: 'toolchain'
            task: 'depends'
    run: |
      cd {{name}}-build
      make DESTDIR={{destdir}} install
      rm {{destdir}}{{host.prefix}}/lib/*.a