mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 18:39:02 +08:00
f7d80c9780
- [X] Changes comply with the [maintainer guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md) - [X] SHA512s are updated for each updated download - [ ] ~The "supports" clause reflects platforms that may be fixed by this new version~ - [ ] ~Any fixed [CI baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt) entries are removed from that file.~ - [ ] ~Any patches that are no longer applied are deleted from the port's directory.~ - [X] The version database is fixed by rerunning `./vcpkg x-add-version --all` and committing the result. - [X] Only one version is added to each modified port's versions file.
75 lines
1.5 KiB
JSON
75 lines
1.5 KiB
JSON
{
|
|
"name": "minizip-ng",
|
|
"version": "4.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",
|
|
"license": "Zlib",
|
|
"supports": "!uwp",
|
|
"dependencies": [
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake-config",
|
|
"host": true
|
|
}
|
|
],
|
|
"default-features": [
|
|
"bzip2",
|
|
"lzma",
|
|
"pkcrypt",
|
|
"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"
|
|
},
|
|
"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"
|
|
]
|
|
}
|
|
}
|
|
}
|