vcpkg/ports/libarchive/vcpkg.json
Wolfgang Stöggl 32f6448a9e
[libarchive] Restore pkgconfig file (#19428)
So far, generating libarchive.pc has been disabled by the
fix-buildsystem.patch, whereas INCLUDE(CreatePkgConfigFile) has
been removed from CMakeLists.txt
- Update fix-buildsystem.patch and allow creating the pkgconfig file
- Add vcpkg_fixup_pkgconfig() to portfile
- Add `FEATURES` keyword to vcpkg_check_features() to avoid deprecation
  warning
2021-08-10 00:57:48 -07:00

64 lines
1.1 KiB
JSON

{
"name": "libarchive",
"version-semver": "3.4.3",
"port-version": 7,
"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"
]
}
}
}