vcpkg/ports/minizip-ng/vcpkg.json
Prateek Chokse 601d7f3205
[minizip-ng] Updated minizip version and fixed windows build for previous version (#23684)
* [minizip-ng] fix: in windows only compat symbols were exposed

* [minzip-ng] updated version

* [minzip-ng] updated baseline and versions

* Add vcpkg_check_linkage

* update version

Co-authored-by: prateek.chokse <prateek.chokse@airamatrix.com>
Co-authored-by: Jonliu1993 <13720414433@163.com>
2022-03-23 12:23:34 -07:00

88 lines
1.8 KiB
JSON

{
"name": "minizip-ng",
"version": "3.0.5",
"description": "minizip-ng is a zip manipulation library written in C that is supported on Windows, macOS, and Linux.",
"homepage": "https://github.com/zlib-ng/minizip-ng",
"supports": "!uwp",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"bzip2",
"lzma",
"pkcrypt",
"signing",
"wzaes",
"zlib",
"zstd"
],
"features": {
"bzip2": {
"description": "Enables BZIP2 compression",
"dependencies": [
"bzip2"
]
},
"lzma": {
"description": "Enables LZMA compression",
"dependencies": [
"liblzma"
]
},
"openssl": {
"description": "Enables OpenSSL for encryption",
"dependencies": [
"openssl"
]
},
"pkcrypt": {
"description": "Enables PKWARE traditional encryption"
},
"signing": {
"description": "Enables zip signing support",
"dependencies": [
{
"name": "minizip-ng",
"default-features": false,
"features": [
"openssl"
],
"platform": "!windows & !osx"
}
]
},
"wzaes": {
"description": "Enables WinZIP AES encryption",
"dependencies": [
{
"name": "minizip-ng",
"default-features": false,
"features": [
"openssl"
],
"platform": "!windows & !osx"
}
]
},
"zlib": {
"description": "Enables ZLIB compression",
"dependencies": [
"zlib"
]
},
"zstd": {
"description": "Enables ZSTD compression",
"dependencies": [
"zstd"
]
}
}
}