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" 8build: [ 9 [make "all" "opt" 10 "MPIINCDIR=%{conf-mpi:includedir}%" 11 "MPILIBDIR=%{conf-mpi:libdir}%" 12 "MPICC=%{conf-mpi:binpath}%mpicc" 13 "MPIRUN=%{conf-mpi:binpath}%mpirun" 14 ] 15] 16patches: ["post103.patch"] 17install: [[make "install"]] 18remove: [[make "uninstall"]] 19x-ci-accept-failures: ["debian-unstable"] 20depends: [ 21 "ocaml" {>= "4.02.3"} 22 "conf-mpi" 23 "ocamlfind" {build} 24] 25synopsis: "OCaml binding to the Message Passing Interface (MPI)" 26url { 27 src: "https://github.com/xavierleroy/ocamlmpi/archive/rel103.tar.gz" 28 checksum: [ 29 "sha256=3b8cb320e0e56c1202b9a1f4a6e75eedaeae692b17a948568582c2d2a6c96619" 30 "md5=ba5b0e0e43b3e7af265109bb1ec94690" 31 ] 32} 33extra-source "post103.patch" { 34 src: 35 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/mpi/post103.patch" 36 checksum: [ 37 "sha256=6b372b0c7fec287df016b74226108321d99ec27b5609a6ef4f77199ae41ba325" 38 "md5=137e92a72f89e2835a23eec33204c642" 39 ] 40}