vcpkg/ports/glpk/vcpkg.json
Fabio A. Correa 2ac8af6d70
[glpk] Add new port (#28364)
* Create portfile.cmake

* Add manifest and patches for glpk-5.0

* Shrink portfile.cmake

Removed some comments

* Update ci.baseline.txt to list glpk:x86-windows

* Addressing some reviewer comments and suggestions

* Addressing comments from microsoft/vcpkg#28364

* Trying out x86-windows again

* Updating the version database

* x-add-version glpk

* Addressing reviews

* Update version database: x-add-version glpk

* More compact code thanks to PR reviews

* format-manifest ports/glpk/vcpkg.json

* Update version database: x-add-version glpk

* No default features

* Update version database: x-add-version glpk
2022-12-29 10:28:12 -08:00

57 lines
1.5 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
"name": "glpk",
"version": "5.0",
"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"
]
}
]
}
}
}