this repo has no description
1opam-version: "2.0"
2maintainer: "joris.giovannangeli@ahrefs.com"
3authors: "joris giovannangeli"
4homepage: "https://github.com/ahrefs/ocaml-jemalloc"
5bug-reports: "https://github.com/ahrefs/ocaml-jemalloc/issues"
6license: "MIT"
7tags: ["org:ahrefs" "clib:jemalloc"]
8dev-repo: "git+https://github.com/ahrefs/ocaml-jemalloc"
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]
18install: ["ocaml" "setup.ml" "-install"]
19remove: ["ocamlfind" "remove" "jemalloc_ctl"]
20depends: [
21 "ocaml" {>= "4.04.1"}
22 ("oasis" {build & >= "0.4.7"} | "oasis-mirage" {build & >= "0.4.7"})
23 "ocamlbuild" {build}
24 "ocamlfind" {build}
25]
26depexts: [
27 ["jemalloc-dev"] {os-distribution = "alpine"}
28 ["libjemalloc-dev"] {os-family = "debian"}
29 ["jemalloc-devel"] {os-distribution = "fedora"}
30 ["jemalloc-devel"] {os-distribution = "mageia"}
31 ["jemalloc-devel"] {os-distribution = "rhel"}
32 ["jemalloc-devel"] {os-distribution = "centos"}
33 ["jemalloc"] {os = "macos"}
34]
35synopsis: "Bindings to jemalloc mallctl api"
36description:
37 "Exposes helpers to access jemalloc control api, retrieve allocator statistics and change allocator settings."
38flags: light-uninstall
39url {
40 src: "https://github.com/ahrefs/ocaml-jemalloc/archive/0.1.tar.gz"
41 checksum: [
42 "sha256=a15596273f6ecedd3f89d791e6dab4bf1cdb420c318f660fa8931043f652a0e6"
43 "md5=94bcdd7e97ef4d9494534c19641512a3"
44 ]
45}