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>"]
4tags: ["science" "numerics"]
5license: "ISC"
6homepage: "https://github.com/Chris00/integration1d"
7dev-repo: "git+https://github.com/Chris00/integration1d.git"
8bug-reports: "https://github.com/Chris00/integration1d/issues"
9doc: "https://Chris00.github.io/integration1d/doc"
10build: [
11 ["jbuilder" "subst" "-p" name] {dev}
12 ["jbuilder" "build" "-p" name "-j" jobs]
13 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test}
14]
15depends: [
16 "ocaml"
17 "jbuilder" {>= "1.0+beta7"}
18 "camlp4" {build}
19]
20synopsis: "Integration of functions of one variable"
21description: """
22This is a Collection of numerical integration routines inspired by
23QUADPACK but written in pure OCaml.
24
25Installation
26------------
27
28The easiest way of installing this library is to use [opam][]:
29
30 opam install integration1d
31
32If you wish to compile it by hand, install [jbuilder][] and do
33`jbuilder build @install`.
34
35
36Documentation
37-------------
38
39Please see the interface of the
40module [Integration1D](src/integration1D.mli).
41
42
43[OPAM]: https://opam.ocaml.org/
44[jbuilder]: https://github.com/janestreet/jbuilder"""
45url {
46 src:
47 "https://github.com/Chris00/integration1d/releases/download/0.5/integration1d-0.5.tbz"
48 checksum: [
49 "sha256=8fdc9fb9a24e3d1a3e28368bb96ab3232e9934ad47b730af2646b956d47344ac"
50 "md5=fbdb255fd50f55db1691126e2ddfce92"
51 ]
52}