vcpkg/ports/glpk/vcpkg.json
Alexander Neumann d84e61c2c3
Fix coin-or ports. (#29398)
* add stuff

* coinutils stuff

* coin-or-* fixes!

* fix patch

* Fix openmvg

* fix openmvg by modifying includes

* fix ipopt.

* add !uwp supports in coinutils

* try fixing openmvg on osx

* format manifest and license stuff

* fix linkage

* v db
2023-02-09 14:51:04 -08:00

58 lines
1.6 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
"name": "glpk",
"version": "5.0",
"port-version": 1,
"maintainers": "Fabio A. Correa Duran",
"description": [
"The GNU Linear Programming Kit (GLPK) solves large-scale linear programming (LP), mixed integer programming (MIP), and related problems.",
"GLPK includes the following main components:",
"Primal and dual simplex methods",
"Primal-dual interior-point method",
"Branch-and-cut method",
"Translator for GNU MathProg",
"Application program interface (API)",
"Stand-alone LP/MIP solver "
],
"homepage": "https://www.gnu.org/software/glpk/",
"documentation": "https://www.gnu.org/software/glpk/#documentation",
"license": "GPL-3.0-or-later",
"features": {
"dl": {
"description": "Enable shared library support",
"dependencies": [
"dlfcn-win32"
]
},
"gmp": {
"description": "Use the GNU Multiple Precision Arithmetic Library",
"dependencies": [
"gmp"
]
},
"mysql": {
"description": "Sharing between MathProg objects and MySQL databases (libmysql)",
"dependencies": [
{
"name": "glpk",
"features": [
"dl"
]
},
"libmysql"
]
},
"odbc": {
"description": "Sharing between MathProg objects and databases through ODBC (libiodbc)",
"dependencies": [
{
"name": "glpk",
"features": [
"dl"
]
}
]
}
}
}