vcpkg/ports/kealib/vcpkg.json
Billy O'Neal 4c1734ba2a
[kealib] Block attempting to load gdal's package.
Resolves https://github.com/microsoft/vcpkg/issues/32653

The problem is that regardless of `LIBKEA_WITH_GDAL` it runs `find_package(GDAL`. (Ignoring the answer) Inside GDAL's package, they do `find_dependency(HDF5 COMPONENTS C)` which overrides kealib's attempted `find_package(HDF5 COMPONENTS CXX HL REQUIRED)` with the wrong libraries.
2023-07-19 23:26:01 -07:00

20 lines
368 B
JSON

{
"name": "kealib",
"version": "1.4.14",
"port-version": 1,
"description": "KEALib provides an implementation of the GDAL data model using HDF5.",
"homepage": "https://github.com/ubarsc/kealib",
"dependencies": [
{
"name": "hdf5",
"features": [
"cpp"
]
},
{
"name": "vcpkg-cmake",
"host": true
}
]
}