vcpkg/ports/gdal/vcpkg.json
Matthias Kuhn 061e92ab17
[gdal] Make building executables optional (#19243)
* [gdal] Optional "tool" feature to build executables

Fixes #19189

* x-add-version

* Fix remove of tools

* Always delete the debug tools

* Add patch to make tools build optional (non-windows)

* Update patch to make tools build optional (windows)

* Update git-tree

* Update tools patch

* Update git-tree

* Revise windows tools handling

* x-add-version

* Remove empty bin dir

* Update git-tree

* Remove obsolete static tools patch

* Update git-tree

* update

* reindent

* x-add-version

* restore version

Co-authored-by: Kai Pastor <dg0yt@darc.de>
2021-09-13 14:41:20 -07:00

56 lines
1.1 KiB
JSON

{
"name": "gdal",
"version-semver": "3.2.2",
"port-version": 5,
"description": "The Geographic Data Abstraction Library for reading and writing geospatial raster and vector data",
"homepage": "https://gdal.org",
"supports": "!arm",
"dependencies": [
"cfitsio",
"curl",
"expat",
"geos",
"giflib",
"hdf5",
{
"name": "json-c",
"platform": "!windows"
},
"libgeotiff",
"libjpeg-turbo",
"liblzma",
"libpng",
"libpq",
"libwebp",
"libxml2",
"netcdf-c",
"openjpeg",
"proj4",
"sqlite3",
"tiff",
"zlib",
"zstd"
],
"features": {
"libspatialite": {
"description": "Create or update SpatiaLite databases using libspatialite",
"dependencies": [
"libspatialite"
]
},
"mysql-libmariadb": {
"description": "Add mysql support using libmariadb",
"dependencies": [
"libmariadb"
]
},
"system-libraries": {
"$supports": "!windows",
"description": "Include drivers which need additional libraries"
},
"tools": {
"description": "Builds gdal and ogr executables"
}
}
}