-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmeta.yaml
62 lines (55 loc) · 1.44 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
57
58
59
60
61
62
{% set name = "pycppad" %}
{% set version = "1.2.3" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/Simple-Robotics/{{ name }}/releases/download/v{{ version }}/{{ name }}-{{ version }}.tar.gz
sha256: a8b1d79228ee1fda805d5dc16fa395eea4ccab4bb2c5bd203751d7acc09ca5c1
build:
number: 1
skip: true # [win and vc<14]
requirements:
build:
- {{ compiler('cxx') }}
- vs2017_win-64 # [win64]
- vs2017_win-32 # [win32]
- cmake
- make # [not win]
- python # [build_platform != target_platform]
- cross-python_{{ target_platform }} # [build_platform != target_platform]
- numpy # [build_platform != target_platform]
host:
- eigen
- libboost-python-devel
- python
- cppad
- cppadcodegen # [not win]
- eigenpy
- numpy
run:
- eigen
- libboost-python-devel
- python
- cppad
- cppadcodegen # [not win]
- eigenpy
- {{ pin_compatible('numpy') }}
test:
requires:
- pkg-config
imports:
- pycppad
commands:
- pkg-config --modversion pycppad
about:
home: http://github.com/Simple-Robotics/pycppad
license: BSD-3-Clause
license_family: BSD
license_file: LICENSE
summary: Python bindings for CppAD and CppADCodeGen using Boost.Python
dev_url: http://github.com/Simple-Robotics/pycppad
extra:
recipe-maintainers:
- proyan
- jcarpent