-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathmeta.yaml
55 lines (48 loc) · 1.55 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
{% set name = "xtensor" %}
{% set version = "0.24.6" %}
{% set sha256 = "f87259b51aabafdd1183947747edfff4cff75d55375334f2e81cee6dc68ef655" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://github.com/xtensor-stack/xtensor/archive/{{ version }}.tar.gz
sha256: {{ sha256 }}
build:
number: 0
skip: true # [win and vc<14]
requirements:
build:
- {{ compiler('cxx') }}
- cmake
- make # [unix]
host:
- xtl >=0.7,<0.8
run:
- xtl >=0.7,<0.8
run_constrained:
- xsimd >=8.0.3,<10
test:
commands:
- test -d ${PREFIX}/include/xtensor # [unix]
- test -f ${PREFIX}/include/xtensor/xarray.hpp # [unix]
- test -f ${PREFIX}/share/cmake/xtensor/xtensorConfig.cmake # [unix]
- test -f ${PREFIX}/share/cmake/xtensor/xtensorConfigVersion.cmake # [unix]
- if not exist %LIBRARY_PREFIX%\include\xtensor\xarray.hpp (exit 1) # [win]
- if not exist %LIBRARY_PREFIX%\share\cmake\xtensor\xtensorConfig.cmake (exit 1) # [win]
- if not exist %LIBRARY_PREFIX%\share\cmake\xtensor\xtensorConfigVersion.cmake (exit 1) # [win]
about:
home: https://github.com/xtensor-stack/xtensor
license: BSD-3-Clause
license_family: BSD
license_file: LICENSE
summary: The C++ tensor algebra library
description: Multi dimensional arrays with broadcasting and lazy computing
doc_url: https://xtensor.readthedocs.io
dev_url: https://github.com/xtensor-stack/xtensor
extra:
recipe-maintainers:
- SylvainCorlay
- JohanMabille
- wolfv
- davidbrochart