vcpkg/ports/libarchive/vcpkg.json
Phoebe e353c4bdda
[libarchive] Remove lzo from the default feature list (#16957)
* [libarchive] Remove lzo from the default feature list

* Update the baseline version
2021-04-02 12:53:07 -07:00

64 lines
1.1 KiB
JSON

{
"name": "libarchive",
"version-semver": "3.4.3",
"port-version": 4,
"description": "Library for reading and writing streaming archives",
"homepage": "https://github.com/libarchive/libarchive",
"supports": "!uwp",
"dependencies": [
"zlib"
],
"default-features": [
"bzip2",
"libxml2",
"lz4",
"lzma",
"openssl",
"zstd"
],
"features": {
"bzip2": {
"description": "BZip2 support",
"dependencies": [
"bzip2"
]
},
"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": "Openssl support",
"dependencies": [
"openssl"
]
},
"zstd": {
"description": "Zstd support",
"dependencies": [
"zstd"
]
}
}
}