mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-09 09:21:46 +00:00
91eac7085b
pin swig version for conda
69 lines
1.5 KiB
YAML
69 lines
1.5 KiB
YAML
{% set name = "ifcopenshell" %}
|
|
{% set version = "0.7.0" %}
|
|
{% set build = 1 %}
|
|
|
|
# Higher number -> Always prioritize "novtk" variant over "all" variant
|
|
{% set build = build + 200 %} # [variant == "novtk"]
|
|
{% set build = build + 100 %} # [variant == "all"]
|
|
|
|
package:
|
|
name: {{ name }}
|
|
version: {{ version }}
|
|
|
|
source:
|
|
path: ..
|
|
|
|
build:
|
|
string: py{{ CONDA_PY }}_{{ variant }}_h{{ PKG_HASH }}_{{ build }}
|
|
binary_relocation: false [osx]
|
|
number: {{ build }}
|
|
|
|
requirements:
|
|
build:
|
|
- {{ compiler('c') }}
|
|
- {{ compiler('cxx') }}
|
|
- ninja >=1.10.2
|
|
- cmake
|
|
- swig 4.1.1
|
|
|
|
host:
|
|
- python
|
|
- boost-cpp
|
|
- occt 7.7.2 *{{ variant }}*
|
|
- libxml2
|
|
- cgal-cpp
|
|
- hdf5
|
|
- mpfr
|
|
- gmp # [unix]
|
|
- mpir # [win]
|
|
- nlohmann_json
|
|
- zlib
|
|
|
|
run:
|
|
- python
|
|
- occt 7.7.2 *{{ variant }}*
|
|
- {{ pin_compatible('cgal-cpp', max_pin='x.x.x') }}
|
|
- {{ pin_compatible('boost-cpp', max_pin='x.x.x') }}
|
|
- {{ pin_compatible('hdf5', max_pin='x.x.x') }}
|
|
- libxml2
|
|
- mpfr
|
|
- gmp # [unix]
|
|
- mpir # [win]
|
|
- nlohmann_json
|
|
- zlib
|
|
|
|
test:
|
|
imports:
|
|
- ifcopenshell
|
|
|
|
about:
|
|
home: https://ifcopenshell.org
|
|
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.
|
|
doc_url: https://ifcopenshell.org/
|
|
dev_url: https://github.com/IfcOpenShell/IfcOpenShell
|