-
Notifications
You must be signed in to change notification settings - Fork 10
/
meta.yaml
56 lines (46 loc) · 1.02 KB
/
meta.yaml
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
56
{% set name = "simpleitk" %}
{% set version = "2.2.1" %}
{% set build_number = 0 %}
package:
name: simpleitk
version: "{{version}}"
source:
git_url: https://github.com/SimpleITK/SimpleITK
git_tag: v{{version}}
build:
number: "{{build_number}}"
requirements:
build:
- {{ compiler('c') }}
- {{ compiler('cxx') }}
- cmake >=3.16.3
- swig >=4,<5
- ninja
host:
- python
- setuptools
- libtiff
- libpng
- jpeg
- zlib
- tbb-devel
run:
- vs2015_runtime # [win]
- python
- {{ pin_compatible('libtiff', max_pin='x.x') }}
- {{ pin_compatible('libpng', max_pin='x.x') }}
- {{ pin_compatible('jpeg', max_pin='x') }}
- {{ pin_compatible('zlib', max_pin='x.x') }}
- tbb
test:
imports:
- SimpleITK
about:
home: http::/www.simpleitk.org
license: Apache 2.0
license_file: LICENSE
summary: Simplified interface to the Insight Toolkit for image registration and segmentation
extra:
recipe-maintainers:
- blowekamp
- zivy