mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 05:52:04 +08:00
253b8aa847
* [libarchive] Update to 3.6.2 * Add general 'crypto' feature * Cleanup * Adjust wrapper to crypto config
88 lines
1.6 KiB
JSON
88 lines
1.6 KiB
JSON
{
|
|
"name": "libarchive",
|
|
"version": "3.6.2",
|
|
"description": "Library for reading and writing streaming archives",
|
|
"homepage": "https://www.libarchive.org",
|
|
"license": null,
|
|
"supports": "!uwp",
|
|
"dependencies": [
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
},
|
|
"zlib"
|
|
],
|
|
"default-features": [
|
|
"bzip2",
|
|
"crypto",
|
|
"libxml2",
|
|
"lz4",
|
|
"lzma",
|
|
"zstd"
|
|
],
|
|
"features": {
|
|
"bzip2": {
|
|
"description": "BZip2 support",
|
|
"dependencies": [
|
|
"bzip2"
|
|
]
|
|
},
|
|
"crypto": {
|
|
"description": "Support for cryptographic features",
|
|
"dependencies": [
|
|
{
|
|
"name": "mbedtls",
|
|
"platform": "osx"
|
|
},
|
|
{
|
|
"name": "openssl",
|
|
"platform": "!osx"
|
|
}
|
|
]
|
|
},
|
|
"libxml2": {
|
|
"description": "Libxml2 support",
|
|
"dependencies": [
|
|
"libxml2"
|
|
]
|
|
},
|
|
"lz4": {
|
|
"description": "Lz4 support",
|
|
"dependencies": [
|
|
"lz4"
|
|
]
|
|
},
|
|
"lzma": {
|
|
"description": "Lzma support",
|
|
"dependencies": [
|
|
"liblzma"
|
|
]
|
|
},
|
|
"lzo": {
|
|
"description": "Lzo support",
|
|
"dependencies": [
|
|
"lzo"
|
|
]
|
|
},
|
|
"openssl": {
|
|
"description": "Deprecated. Use feature crypto instead.",
|
|
"dependencies": [
|
|
{
|
|
"name": "libarchive",
|
|
"default-features": false,
|
|
"features": [
|
|
"crypto"
|
|
],
|
|
"platform": "!osx"
|
|
}
|
|
]
|
|
},
|
|
"zstd": {
|
|
"description": "Zstd support",
|
|
"dependencies": [
|
|
"zstd"
|
|
]
|
|
}
|
|
}
|
|
}
|