opam-version: "2.0"
authors: "Roberto Di Cosmo <roberto.org>"
maintainer: "roberto@dicosmo.org"
homepage: "https://github.com/rdicosmo/parmap"
bug-reports: "https://github.com/rdicosmo/parmap/issues"
dev-repo: "git://github.com/rdicosmo/parmap"
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: [
  "ocaml" {< "4.06.0"}
  "ocamlfind"
  "camlp4"
  "ocamlbuild" {build}
  "conf-autoconf"
  "conf-aclocal"
]
depexts: [
  ["autoconf"] {os-family = "debian"}
]
synopsis: "Minimalistic library allowing to exploit multicore architecture"
description: """
Parmap is a minimalistic library allowing to exploit multicore
architecture for OCaml programs with minimal modifications: if you
want to use your many cores to accelerate an operation which happens
to be a map, fold or map/fold (map-reduce), just use Parmap’s parmap,
parfold and parmapfold primitives in place of the standard List.map
and friends, and specify the number of subprocesses to use by the
optional parameter ~ncores."""
url {
  src: "https://github.com/rdicosmo/parmap/tarball/1.0-rc2"
  checksum: "md5=1d68204d3bae2b8e6119528cf69552c4"
}
