this repo has no description
1opam-version: "2.0"
2maintainer: "ygrek@autistici.org"
3authors: [ "Dmitry Grebeniuk <gdsfh1@gmail.com>" "ygrek@autistici.org" ]
4homepage: "https://github.com/ygrek/objsize.git"
5bug-reports: "https://github.com/ygrek/objsize/issues"
6dev-repo: "git+https://github.com/ygrek/objsize.git"
7build: [
8 [make]
9 [make "test"] {with-test}
10 [make "doc"] {with-doc}
11]
12install: [[make "install"]]
13remove: [["ocamlfind" "remove" "objsize"]]
14depends: [
15 "ocaml" {>= "4.03" & < "5.0"}
16 "ocamlfind"
17 "camlp4"
18 "ocamlbuild" {build}
19]
20synopsis: "Small library to compute sizes of OCaml heap values"
21description: """
22This library computes number of words occupied by heap value, size
23of values' headers and maximal depth of values, by recursively scanning
24heap blocks constituting the value in question.
25It is also possible to calculate the total amount of
26heap memory used by live values reachable from GC roots."""
27available: [os != "win32"]
28flags: light-uninstall
29url {
30 src: "https://ygrek.org/p/release/objsize/objsize-0.18.tar.bz2"
31 checksum: [
32 "sha256=6ea998f820ba3d6e261d0bb28d07c4a7ce832307ee7ef96d11cdafc0cd43caef"
33 "md5=dc02c207bb6ff90ee5f21fd2b44c7438"
34 ]
35 mirrors:
36 "https://github.com/ygrek/objsize/releases/download/0.18/objsize-0.18.tar.bz2"
37}