vcpkg/ports/triton/vcpkg.json
MACHIZAUD Andréa 65c66cd748
[capstone] update to 5.0.0-rc2 (#23979)
* [capstone] update to 5.0.0 alpha

* [triton] upgrade to support capstone 5

* [triton] fix incorrect library linkage

* [triton] bump port version

* [capstone] Silence CRT Secure Function warning

* [capstone] update to 5.0.0-rc2

Co-authored-by: MACHIZAUD Andréa <andrea.machizaud@adobe.com>
2022-04-08 15:32:16 -07:00

44 lines
1.1 KiB
JSON

{
"name": "triton",
"version": "0.9",
"port-version": 2,
"description": "Triton is a Dynamic Binary Analysis (DBA) framework. It provides internal components like a Dynamic Symbolic Execution (DSE) engine, a dynamic taint engine, AST representations of the x86, x86-64, ARM32 and AArch64 Instructions Set Architecture (ISA), SMT simplification passes, an SMT solver interface and, the last but not least, Python bindings.",
"homepage": "https://github.com/JonathanSalwan/Triton",
"license": "Apache-2.0",
"supports": "!arm",
"dependencies": [
"boost-math",
"boost-multiprecision",
"boost-numeric-conversion",
{
"name": "capstone",
"default-features": false,
"features": [
"arm",
"arm64",
"x86"
]
},
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
},
"z3"
],
"features": {
"python": {
"description": "Build Triton with Python bindings",
"dependencies": [
{
"name": "python3",
"default-features": false
}
]
}
}
}