this repo has no description
1opam-version: "2.0"
2maintainer: "Christophe Troestler <Christophe.Troestler@umons.ac.be>"
3authors: [ "Christophe Troestler <Christophe.Troestler@umons.ac.be>" ]
4license: "LGPL-3.0-only WITH OCaml-LGPL-linking-exception"
5homepage: "https://github.com/Chris00/ocaml-odepack"
6dev-repo: "git+https://github.com/Chris00/ocaml-odepack.git"
7bug-reports: "https://github.com/Chris00/ocaml-odepack/issues"
8tags: [ "ODE" "scientific-computing" ]
9build: [
10 ["ocaml" "setup.ml" "-configure" "--prefix" prefix]
11 ["ocaml" "setup.ml" "-build"]
12 ["ocaml" "setup.ml" "-configure" "--enable-tests"] {with-test}
13 ["ocaml" "setup.ml" "-build"] {with-test}
14 ["ocaml" "setup.ml" "-test"] {with-test}
15 ["ocaml" "setup.ml" "-doc"] {with-doc}
16]
17install: ["ocaml" "setup.ml" "-install"]
18remove: [
19 ["ocamlfind" "remove" "odepack"]
20]
21depends: [
22 "ocaml" {>= "3.12.1" & < "5.0.0"}
23 "base-bigarray"
24 "ocamlbuild" {build}
25 "ocamlfind" {build}
26 "conf-gfortran"
27]
28synopsis: "Binding to ODEPACK."
29description: """
30This is a collection of solvers for the initial value problem for
31ordinary differential equation systems."""
32flags: light-uninstall
33url {
34 src:
35 "https://github.com/Chris00/ocaml-odepack/releases/download/0.6.8/odepack-0.6.8.tar.gz"
36 checksum: [
37 "sha256=8eb8ae49a451e92126f195b8c96cfaa7f635a2b48e768fc8777afa4deb9435c2"
38 "md5=0cf56bfd8735522eefd7c5210a797560"
39 ]
40}