{% set version = "3.11.1" %} package: name: geos version: {{ version }} source: url: https://download.osgeo.org/geos/geos-{{ version }}.tar.bz2 sha256: 6d0eb3cfa9f92d947731cc75f1750356b3bdfc07ea020553daf6af1c768e0be2 build: number: 0 skip: true # [win and vc<14] run_exports: # pretty poor backcompat. SO name changes each release. # https://abi-laboratory.pro/tracker/timeline/geos/ - {{ pin_subpackage('geos', max_pin='x.x.x') }} requirements: build: - cmake - make # [not win] - ninja # [win] - {{ compiler('c') }} - {{ compiler('cxx') }} test: commands: - geos-config --version # [not win] about: home: https://libgeos.org/ license: LGPL-2.1-only license_file: COPYING summary: Geometry Engine, Open Source description: | GEOS is a C++ library for performing operations on two-dimensional vector geometries. It is primarily a port of the JTS Topology Suite Java library. It provides many of the algorithms used by PostGIS, the Shapely package for Python, the sf package for R, and others. doc_url: https://libgeos.org/ dev_url: https://github.com/libgeos/geos extra: recipe-maintainers: - ocefpaf - pelson - gillins - msarahan - mwtoews - xylar