this repo has no description
1opam-version: "2.0"
2maintainer: "Edgar Aroutiounian <edgar.factorial@gmail.com>"
3authors: "Edgar Aroutiounian <edgar.factorial@gmail.com>"
4homepage: "https://github.com/fxfactorial/ocaml-corecount"
5bug-reports: "https://github.com/fxfactorial/ocaml-corecount/issues"
6license: "BSD-3-Clause"
7tags: "clib:stdc"
8dev-repo: "git+https://github.com/fxfactorial/ocaml-corecount.git"
9build: [
10 ["oasis" "setup"]
11 ["ocaml" "setup.ml" "-configure" "--prefix" prefix]
12 ["ocaml" "setup.ml" "-build"]
13 ["oasis" "setup"] {with-test}
14 ["ocaml" "setup.ml" "-configure" "--enable-tests"] {with-test}
15 ["ocaml" "setup.ml" "-build"] {with-test}
16 ["ocaml" "setup.ml" "-test"] {with-test}
17 ["ocaml" "setup.ml" "-doc"] {with-doc}
18]
19install: ["ocaml" "setup.ml" "-install"]
20remove: ["ocamlfind" "remove" "corecount"]
21depends: [
22 "ocaml" {>= "4.03.0"}
23 "oasis" {build & >= "0.4"}
24 "ocamlbuild" {build}
25 "ocamlfind" {build}
26]
27synopsis: "Get count of cores on machine"
28description: "Get a count of cores on machine via C++11s stdlib"
29flags: light-uninstall
30url {
31 src: "https://github.com/fxfactorial/ocaml-corecount/archive/v1.0.0.tar.gz"
32 checksum: [
33 "sha256=f35df6a084fefd3ea8667bb0754d7b0e5814981b2cba5a5c44b9c2102c5d34ac"
34 "md5=e73e83bfaa0fc9f2434ebbd8cad590b6"
35 ]
36}