Skip to content

Commit

Permalink
Revamp recipe for conda-build 3
Browse files Browse the repository at this point in the history
Use the `compiler` syntax, split `build` and `host`, simplify Windows
`vc` stuff, drop hacky `perl` pin, etc.
  • Loading branch information
jakirkham committed May 26, 2018
1 parent 1e01c43 commit 9d5fa81
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,25 @@ source:

build:
number: 0
features:
- vc14 # [win]
msvc_compiler: 14.0
skip: true # [win and vc!=14]

requirements:
build:
- toolchain
- perl 5.22.2.1
- gcc # [unix]
- vc 14 # [win]
- flang # [win]
- cmake # [win]
- curl # [win]
- jom # [win]
- {{ compiler("c") }}
- {{ compiler("fortran") }} # [unix]
- perl
- flang # [win]
- cmake # [win]
- curl # [win]
- jom # [win]

host:
- libflang # [win]
- libgfortran # [unix]

run:
- vc 14 # [win]
- libflang # [win]
- libgfortran # [unix]
- libflang # [win]
- libgfortran # [unix]

test:
commands:
Expand Down

0 comments on commit 9d5fa81

Please sign in to comment.