Revision 400fd7137cda13f54e758c6aaccb2422485580d4 authored by Roberto Di Cosmo on 23 February 2017, 00:36:09 UTC, committed by GitHub on 23 February 2017, 00:36:09 UTC
added get_rank so that worker processes can know at which rank
2 parent s af9691e + 8204dbb
Raw File
opam
opam-version: "1.2"
maintainer: "Roberto Di Cosmo <roberto@dicosmo.org>"
authors: "Roberto Di Cosmo <roberto@dicosmo.org>"
homepage: "https://github.com/rdicosmo/parmap"
dev-repo: "https://github.com/rdicosmo/parmap.git"
bug-reports: "https://github.com/rdicosmo/parmap/issues"
build: [
  ["aclocal" "-I" "m4"]
  ["autoconf"]
  ["autoheader"]
  ["./configure"] 
  [make "DESTDIR=%{prefix}%" "OCAMLLIBDIR=lib" ]
]
install: [
  [make "install" "DESTDIR=%{prefix}%" "OCAMLLIBDIR=lib"]
]
remove: [
  ["aclocal" "-I" "m4"]
  ["autoconf"]
  ["autoheader"]
  ["./configure"] 
  [make "uninstall" "DESTDIR=%{prefix}%" "OCAMLLIBDIR=lib"]
]
depends: [
  "ocamlfind"
  "ocamlbuild" {build}
  "conf-autoconf"
]
back to top