this repo has no description
1opam-version: "2.0"
2maintainer: "Leonid Rozenberg <leonidr@gmail.com>"
3authors: "Leonid Rozenberg <leonidr@gmail.com>"
4homepage: "https://github.com/hammerlab/oml/"
5dev-repo: "git+https://github.com/hammerlab/oml.git"
6bug-reports: "https://github.com/hammerlab/oml/issues"
7license: "Apache-2.0"
8depends: [
9 "ocaml" {>= "4.03"}
10 "ocamlfind" {build}
11 "ocamlbuild" {build}
12 "topkg" {build}
13 "kaputt" {with-test}
14 "dsfo" {with-test}
15]
16depopts: [
17 "lacaml"
18 "lbfgs"
19 "ocephes"
20]
21conflicts: [
22 "lacaml" { < "8.0.6" }
23 "lacaml" { >= "9.2.3" }
24 "lbfgs" { < "0.8.7" }
25 "ocephes" { < "0.8" }
26]
27
28build: [
29 [
30 "ocaml"
31 "pkg/pkg.ml"
32 "build"
33 "--pinned"
34 "%{pinned}%"
35 "--with-lacaml"
36 lacaml:installed
37 "--with-lbfgs"
38 lbfgs:installed
39 "--with-ocephes"
40 ocephes:installed
41 ]
42 [
43 "ocaml"
44 "pkg/pkg.ml"
45 "build"
46 "--pinned"
47 "%{pinned}%"
48 "--build-dir"
49 "_test"
50 "-n"
51 "omltest"
52 "--tests"
53 "true"
54 ] {with-test}
55 ["ocaml" "pkg/pkg.ml" "test" "--build-dir" "_test"] {with-test}
56]
57synopsis: "Math Library"
58description: """
59[](https://travis-ci.org/hammerlab/oml/)
60[](https://coveralls.io/github/hammerlab/oml?branch=HEAD)
61[](https://gitter.im/hammerlab/oml?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
62
63
64A collection of OCaml Math and Statistics functions.
65The API is available [online](http://hammerlab.github.io/oml/index.html)."""
66url {
67 src:
68 "https://github.com/hammerlab/oml/releases/download/0.0.7/oml-0.0.7.tbz"
69 checksum: [
70 "sha256=a84d38c74f8edf867ca9cb99415ea66320dc667fc012c071d60cb3a87205432d"
71 "md5=ce2b5241f66da5d25781dab2e07e6990"
72 ]
73}