-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathglpk.opam
30 lines (30 loc) · 1.11 KB
/
glpk.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
opam-version: "2.0"
version: "0.1.8"
maintainer: "Samuel Mimram <smimram@gmail.com>"
authors: "Samuel Mimram <smimram@gmail.com>"
homepage: "http://smimram.github.io/ocaml-glpk/"
license: "GPL-2"
dev-repo: "git+https://github.com/smimram/ocaml-glpk.git"
bug-reports: "https://github.com/smimram/ocaml-glpk/issues"
build: [
["dune" "build" "@install" "-p" name "-j" jobs]
["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc}
]
depends: ["ocaml" "dune"]
depexts: [
["libglpk-dev"] {os-distribution = "debian"}
["libglpk-dev"] {os-distribution = "ubuntu"}
["homebrew/science/glpk"] {os = "macos" & os-distribution = "homebrew"}
]
synopsis: "Bindings for glpk"
description: """
ocaml-glpk are OCaml bindings to GLPK (GNU Linear Programming Kit)
which is a package intended for solving large-scale linear programming
(LP), mixed integer programming (MIP), and other related problems. The
library is released under the GPL license (like GLPK itself)."""
flags: light-uninstall
url {
src:
"https://github.com/smimram/ocaml-glpk/releases/download/0.1.8/ocaml-glpk-0.1.8.tar.gz"
checksum: "md5=d760f081a25259fb0c79175bcb51d6cd"
}