diff options
Diffstat (limited to 'vcpkg/ports/libarchive/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/libarchive/vcpkg.json | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/vcpkg/ports/libarchive/vcpkg.json b/vcpkg/ports/libarchive/vcpkg.json new file mode 100644 index 0000000..32c1f2c --- /dev/null +++ b/vcpkg/ports/libarchive/vcpkg.json @@ -0,0 +1,78 @@ +{ + "name": "libarchive", + "version": "3.8.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", + "lz4", + "lzma", + "xar", + "zstd" + ], + "features": { + "bzip2": { + "description": "BZip2 support", + "dependencies": [ + "bzip2" + ] + }, + "crypto": { + "description": "Support for cryptographic features", + "dependencies": [ + { + "name": "mbedtls", + "platform": "osx" + }, + { + "name": "openssl", + "platform": "!osx" + } + ] + }, + "lz4": { + "description": "Lz4 support", + "dependencies": [ + "lz4" + ] + }, + "lzma": { + "description": "Lzma support", + "dependencies": [ + "liblzma" + ] + }, + "lzo": { + "description": "Lzo support", + "dependencies": [ + "lzo" + ] + }, + "xar": { + "description": "Xar support", + "dependencies": [ + { + "name": "libxml2", + "default-features": false, + "platform": "!windows | mingw" + } + ] + }, + "zstd": { + "description": "Zstd support", + "dependencies": [ + "zstd" + ] + } + } +} |