this repo has no description
1opam-version: "2.0" 2maintainer: "Timothy Bourke <tim@tbrk.org>" 3authors: ["Xavier Leroy"] 4homepage: "https://github.com/xavierleroy/ocamlmpi" 5bug-reports: "https://github.com/xavierleroy/ocamlmpi/issues" 6dev-repo: "git+https://github.com/xavierleroy/ocamlmpi" 7license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 8x-maintenance-intent: ["(latest)"] 9build: [ 10 [make "all" 11 "MPIINCDIR=%{conf-mpi:includedir}%" 12 "MPILIBDIR=%{conf-mpi:libdir}%" 13 "MPICC=%{conf-mpi:binpath}%mpicc" 14 "MPIRUN=%{conf-mpi:binpath}%mpirun" 15 ] 16 [make "opt" 17 "MPIINCDIR=%{conf-mpi:includedir}%" 18 "MPILIBDIR=%{conf-mpi:libdir}%" 19 "MPICC=%{conf-mpi:binpath}%mpicc" 20 "MPIRUN=%{conf-mpi:binpath}%mpirun" 21 ] { ocaml:native } 22] 23install: [[make "install"]] 24remove: [[make "uninstall"]] 25x-ci-accept-failures: ["debian-unstable"] 26depends: [ 27 "ocaml" {>= "4.06.0"} 28 "base-bigarray" 29 "conf-mpi" 30 "ocamlfind" {build} 31] 32synopsis: "OCaml binding to the Message Passing Interface (MPI)" 33url { 34 src: "https://github.com/xavierleroy/ocamlmpi/archive/rel106.tar.gz" 35 checksum: [ 36 "md5=2b8f648d6142bcdfdf15974c08a48d83" 37 "sha512=946b1b8a1fca679a76af8f0d573392f796550e0f712724843c4af2611dd8c50afc1ba3b0d7dff084620ecffea4f1e0cff8901847adaeff2d4e226ef4d77d122a" 38 ] 39}