2022-08-15 16:40:42 +02:00
|
|
|
{% set name = "ifcopenshell" %}
|
|
|
|
|
{% set version = "0.7.0" %}
|
2023-11-23 14:58:34 +01:00
|
|
|
{% set build = 1 %}
|
2023-03-11 16:05:09 +01:00
|
|
|
|
2023-11-23 14:58:34 +01:00
|
|
|
# Higher number -> Always prioritize "novtk" variant over "all" variant
|
|
|
|
|
{% set build = build + 200 %} # [variant == "novtk"]
|
|
|
|
|
{% set build = build + 100 %} # [variant == "all"]
|
2022-08-15 16:40:42 +02:00
|
|
|
|
2018-01-08 12:19:36 +01:00
|
|
|
package:
|
2022-08-15 16:40:42 +02:00
|
|
|
name: {{ name }}
|
|
|
|
|
version: {{ version }}
|
2018-01-08 12:19:36 +01:00
|
|
|
|
|
|
|
|
source:
|
2022-08-15 16:40:42 +02:00
|
|
|
path: ..
|
2018-01-08 12:19:36 +01:00
|
|
|
|
|
|
|
|
build:
|
2023-11-24 09:29:34 +01:00
|
|
|
string: py{{ CONDA_PY }}_{{ variant }}_h{{ PKG_HASH }}_{{ build }}
|
2022-08-15 16:40:42 +02:00
|
|
|
binary_relocation: false [osx]
|
2023-11-23 14:58:34 +01:00
|
|
|
number: {{ build }}
|
2018-01-08 12:19:36 +01:00
|
|
|
|
|
|
|
|
requirements:
|
|
|
|
|
build:
|
2022-08-15 16:40:42 +02:00
|
|
|
- {{ compiler('c') }}
|
|
|
|
|
- {{ compiler('cxx') }}
|
|
|
|
|
- ninja >=1.10.2
|
2018-01-08 12:19:36 +01:00
|
|
|
- cmake
|
2024-01-02 15:46:48 +01:00
|
|
|
- swig 4.1.1
|
2022-08-15 16:40:42 +02:00
|
|
|
|
|
|
|
|
host:
|
|
|
|
|
- python
|
2022-11-01 15:17:32 +01:00
|
|
|
- boost-cpp
|
2023-11-23 14:58:34 +01:00
|
|
|
- occt 7.7.2 *{{ variant }}*
|
2022-08-15 16:40:42 +02:00
|
|
|
- libxml2
|
2022-09-30 17:49:55 +02:00
|
|
|
- cgal-cpp
|
2023-11-23 15:51:41 +01:00
|
|
|
- hdf5
|
2022-09-30 17:49:55 +02:00
|
|
|
- mpfr
|
|
|
|
|
- gmp # [unix]
|
|
|
|
|
- mpir # [win]
|
|
|
|
|
- nlohmann_json
|
2023-05-08 14:12:03 +02:00
|
|
|
- zlib
|
2022-08-15 16:40:42 +02:00
|
|
|
|
2018-01-08 12:19:36 +01:00
|
|
|
run:
|
2018-01-21 15:58:36 +01:00
|
|
|
- python
|
2023-11-23 14:58:34 +01:00
|
|
|
- occt 7.7.2 *{{ variant }}*
|
2023-08-11 08:44:25 +02:00
|
|
|
- {{ pin_compatible('cgal-cpp', max_pin='x.x.x') }}
|
|
|
|
|
- {{ pin_compatible('boost-cpp', max_pin='x.x.x') }}
|
2023-11-23 15:30:41 +01:00
|
|
|
- {{ pin_compatible('hdf5', max_pin='x.x.x') }}
|
2022-09-30 17:49:55 +02:00
|
|
|
- libxml2
|
|
|
|
|
- mpfr
|
|
|
|
|
- gmp # [unix]
|
|
|
|
|
- mpir # [win]
|
2022-08-15 16:40:42 +02:00
|
|
|
- nlohmann_json
|
2023-05-08 14:12:03 +02:00
|
|
|
- zlib
|
2022-08-15 16:40:42 +02:00
|
|
|
|
|
|
|
|
test:
|
|
|
|
|
imports:
|
|
|
|
|
- ifcopenshell
|
|
|
|
|
|
2018-01-08 12:19:36 +01:00
|
|
|
about:
|
2023-11-23 20:35:28 +01:00
|
|
|
home: https://ifcopenshell.org
|
2022-08-15 16:40:42 +02:00
|
|
|
license: LGPL-3.0-or-later
|
|
|
|
|
license_file: COPYING
|
|
|
|
|
summary: 'IfcOpenShell is a library to support the IFC file format'
|
|
|
|
|
description: |
|
|
|
|
|
IfcOpenShell is an open source (LGPL) software library for
|
|
|
|
|
working with the Industry Foundation Classes (IFC) file format.
|
2023-11-23 20:35:28 +01:00
|
|
|
doc_url: https://ifcopenshell.org/
|
2022-08-15 16:40:42 +02:00
|
|
|
dev_url: https://github.com/IfcOpenShell/IfcOpenShell
|