diff options
Diffstat (limited to 'vcpkg/ports/duckdb/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/duckdb/vcpkg.json | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/vcpkg/ports/duckdb/vcpkg.json b/vcpkg/ports/duckdb/vcpkg.json new file mode 100644 index 0000000..49383b7 --- /dev/null +++ b/vcpkg/ports/duckdb/vcpkg.json @@ -0,0 +1,72 @@ +{ + "name": "duckdb", + "version": "1.4.1", + "port-version": 2, + "description": "High-performance in-process analytical database system", + "homepage": "https://duckdb.org", + "license": null, + "supports": "!uwp", + "dependencies": [ + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ], + "features": { + "autocomplete": { + "description": "Statically link the autocomplete extension into DuckDB" + }, + "excel": { + "description": "Statically link the excel extension into DuckDB", + "dependencies": [ + "expat", + { + "name": "minizip-ng", + "default-features": false + } + ] + }, + "httpfs": { + "description": "Statically link the httpfs extension into DuckDB", + "dependencies": [ + { + "name": "curl", + "default-features": false + }, + "openssl", + { + "name": "zlib", + "platform": "mingw" + } + ] + }, + "iceberg": { + "description": "Statically link the iceberg extension into DuckDB", + "dependencies": [ + "roaring" + ] + }, + "icu": { + "description": "Statically link the icu extension into DuckDB", + "dependencies": [ + { + "name": "icu", + "default-features": false + } + ] + }, + "json": { + "description": "Statically link the json extension into DuckDB" + }, + "tpcds": { + "description": "Statically link the tpcds extension into DuckDB" + }, + "tpch": { + "description": "Statically link the tpch extension into DuckDB" + } + } +} |