vcpkg/ports/libtorrent/vcpkg.json
Francisco Pombal 71b30b0874
[libtorrent] Update to latest 1.2.x commit (#17166)
* [libtorrent] Update to latest 1.2.x commit

- Update to 1.2.13 plus some additional fixes (allows dropping existing
patches)
- Build with libiconv by default on all platforms
- Fix deprecated usage of `vcpkg_check_features` without the `FEATURES`
keyword
- Migrate to vcpkg.json manifest files

* [libtorrent] Update versioning information

Co-authored-by: Francisco Pombal <FranciscoPombal@users.noreply.github.com>
2021-04-30 11:21:51 -07:00

54 lines
1.3 KiB
JSON

{
"name": "libtorrent",
"version-string": "1.2.13-b799640",
"maintainers": "Arvid Norberg <arvid.norberg@gmail.com>",
"description": "An efficient feature complete C++ BitTorrent implementation",
"homepage": "https://libtorrent.org",
"documentation": "https://libtorrent.org/reference.html",
"supports": "!uwp & !(windows & arm)",
"dependencies": [
"boost-asio",
"boost-chrono",
"boost-config",
"boost-crc",
"boost-date-time",
"boost-iterator",
"boost-multiprecision",
"boost-pool",
"boost-random",
"boost-scope-exit",
"boost-system",
"boost-variant",
"openssl"
],
"default-features": [
"iconv"
],
"features": {
"deprfun": {
"description": "build with deprecated functions enabled"
},
"examples": {
"description": "build the examples in the examples directory"
},
"iconv": {
"description": "build with libiconv",
"dependencies": [
"libiconv"
]
},
"python": {
"description": "build the python bindings in bindings/python directory",
"dependencies": [
"boost-python"
]
},
"test": {
"description": "build the libtorrent tests"
},
"tools": {
"description": "build the tools in the tools directory"
}
}
}