mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-30 19:51:37 +08:00
76 lines
1.7 KiB
JSON
76 lines
1.7 KiB
JSON
|
{
|
||
|
"name": "libzip",
|
||
|
"version-semver": "1.7.3",
|
||
|
"port-version": 2,
|
||
|
"description": "A library for reading, creating, and modifying zip archives.",
|
||
|
"homepage": "https://github.com/nih-at/libzip",
|
||
|
"dependencies": [
|
||
|
"zlib"
|
||
|
],
|
||
|
"default-features": [
|
||
|
"bzip2",
|
||
|
"default-aes"
|
||
|
],
|
||
|
"features": {
|
||
|
"bzip2": {
|
||
|
"description": "Support bzip2-compressed zip archives",
|
||
|
"dependencies": [
|
||
|
"bzip2"
|
||
|
]
|
||
|
},
|
||
|
"commoncrypto": {
|
||
|
"description": "AES( encryption) support using Apple's Common Crypto API"
|
||
|
},
|
||
|
"default-aes": {
|
||
|
"description": "Use default AES",
|
||
|
"dependencies": [
|
||
|
{
|
||
|
"name": "libzip",
|
||
|
"default-features": false,
|
||
|
"features": [
|
||
|
"commoncrypto"
|
||
|
],
|
||
|
"platform": "osx"
|
||
|
},
|
||
|
{
|
||
|
"name": "libzip",
|
||
|
"default-features": false,
|
||
|
"features": [
|
||
|
"wincrypto"
|
||
|
],
|
||
|
"platform": "windows"
|
||
|
},
|
||
|
{
|
||
|
"name": "libzip",
|
||
|
"default-features": false,
|
||
|
"features": [
|
||
|
"openssl"
|
||
|
],
|
||
|
"platform": "!(windows | osx)"
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"liblzma": {
|
||
|
"description": "Support XZ compressed zip archives using liblzma",
|
||
|
"dependencies": [
|
||
|
"liblzma"
|
||
|
]
|
||
|
},
|
||
|
"mbedtls": {
|
||
|
"description": "AES (encryption) support using mbedtls",
|
||
|
"dependencies": [
|
||
|
"mbedtls"
|
||
|
]
|
||
|
},
|
||
|
"openssl": {
|
||
|
"description": "AES (encryption) support using OpenSSL",
|
||
|
"dependencies": [
|
||
|
"openssl"
|
||
|
]
|
||
|
},
|
||
|
"wincrypto": {
|
||
|
"description": "AES (encryption) support using Windows Crypto API"
|
||
|
}
|
||
|
}
|
||
|
}
|