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>"
4 "Edgar Friendly <thelema314@gmail.com>" ]
5license: "LGPL-3.0-only WITH OCaml-LGPL-linking-exception"
6homepage: "http://forge.ocamlcore.org/projects/root1d/"
7dev-repo: "git+ssh://forge.ocamlcore.org//git/root1d/root1d.git"
8bug-reports: "http://forge.ocamlcore.org/projects/root1d/"
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" "root1d"]
20]
21depends: [
22 "ocaml" {>= "4.0.0" & < "5.0"}
23 "ocamlbuild" {build}
24 "ocamlfind" {build}
25 "benchmark" {with-test}
26]
27depopts: [
28 "benchmark"
29]
30synopsis: "Find roots of 1D functions."
31description: """
32Collection of functions to seek roots of functions float -> float.
33Pure OCaml code."""
34flags: light-uninstall
35url {
36 src: "https://download.ocamlcore.org/root1d/root1d/0.4/root1d-0.4.tar.gz"
37 checksum: [
38 "sha256=be3bddd3aa65546e2eef93dc7f569c6b64afc085364c14682563862eca0742e4"
39 "md5=620bfdd6bd38221fb820968518a62831"
40 ]
41}