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 [ "sh" "-exc" "echo \"xen_linkopts = \\\"-l:stubs/xen/liboverlap_stubs_xen_stubs.a\\\"\" >> _build/default/META.overlap"]
15 [ "sh" "-exc" "echo \"freestanding_linkopts = \\\"-l:stubs/freestanding/liboverlap_stubs_freestanding_stubs.a\\\"\" >> _build/default/META.overlap"]
16 [ "dune" "runtest" "-p" name "-j" jobs ] {with-test}
17]
18
19install: [
20 [ "dune" "install" "-p" name ] {with-test}
21 [ "./test/test_runes.ml" ] {with-test}
22]
23
24depends: [
25 "ocaml" {>= "4.07.0"}
26 "dune" {>= "2.3"}
27 "conf-pkg-config"
28 "bigarray-compat"
29 "alcotest" {with-test}
30 "astring" {with-test}
31 "fpath" {with-test}
32 "bos" {with-test}
33 "ocamlfind" {with-test}
34]
35
36depopts: [
37 "ocaml-freestanding"
38 "mirage-xen-posix"
39]
40
41conflicts: [
42 "mirage-xen-posix" {< "3.1.0"}
43 "ocaml-freestanding" {< "0.4.3"}
44]
45url {
46 src:
47 "https://github.com/dinosaure/overlap/releases/download/v0.1.0/bigarray-overlap-v0.1.0.tbz"
48 checksum: [
49 "sha256=2097decef792a53a78b0780e4c84684af006d1f1628950ba91255f15cfaae33e"
50 "sha512=81458e12cd7384e9b30624efe53c66c3c99bbb503ccd474cbeb1fd8e81616e9b6689dbc441c79ac3156887ec4aa99b461e1c476581011e3080ce03d6832dcf12"
51 ]
52}