this repo has no description
1opam-version: "2.0"
2maintainer: "Romain Calascibetta <romain.calascibetta@gmail.com>"
3authors: "Romain Calascibetta <romain.calascibetta@gmail.com>"
4homepage: "https://github.com/dinosaure/overlap"
5bug-reports: "https://github.com/dinosaure/overlap/issues"
6dev-repo: "git+https://github.com/dinosaure/overlap.git"
7doc: "https://dinosaure.github.io/overlap/"
8license: "MIT"
9synopsis: "Bigarray.overlap"
10description: """A minimal library to know that 2 bigarray share physically the same memory or not."""
11
12build: [
13 [ "dune" "build" "-p" name "-j" jobs ]
14 [ "dune" "runtest" "-p" name "-j" jobs ] {with-test}
15]
16
17install: [
18 [ "dune" "install" "-p" name ] {with-test}
19 [ "./test/test_runes.ml" ] {with-test}
20]
21
22depends: [
23 "ocaml" {>= "4.07.0"}
24 "dune" {>= "2.3"}
25 "bigarray-compat"
26 "alcotest" {with-test}
27 "astring" {with-test}
28 "fpath" {with-test}
29 "bos" {with-test}
30 "ocamlfind" {with-test}
31 "conf-pkg-config" {with-test}
32]
33
34depopts: [
35 "ocaml-freestanding"
36 "mirage-xen-posix"
37 "js_of_ocaml-compiler"
38]
39
40conflicts: [
41 "mirage-xen-posix" {< "3.1.0"}
42 "ocaml-freestanding" {< "0.4.3"}
43]
44url {
45 src:
46 "https://github.com/dinosaure/overlap/releases/download/v0.2.0/bigarray-overlap-v0.2.0.tbz"
47 checksum: [
48 "sha256=9e5142802b9d4eaa18ac630bd226585f0a1d86b72f79e01993dd2fedd45606ed"
49 "sha512=976ece7d9275117f4bd6ee3d449b15bab79746af5e1259990d581fada33fdcf371ffc7589e906a231b89d76487c6cc2af97069046fd3a2520c77a61f2ed5b1be"
50 ]
51}