this repo has no description
1opam-version: "2.0"
2maintainer: "ygrek@autistici.org"
3authors: "ygrek"
4homepage: "https://ygrek.org/p/ocaml-gperftools/"
5bug-reports: "https://github.com/ygrek/ocaml-gperftools/issues"
6dev-repo: "git+https://github.com/ygrek/ocaml-gperftools.git"
7doc: ["https://ygrek.org/p/ocaml-gperftools/api/index.html"]
8tags: ["org:ygrek"]
9build: [
10 ["ocaml" "setup.ml" "-configure" "--prefix" prefix]
11 ["ocaml" "setup.ml" "-build"]
12 ["ocaml" "setup.ml" "-doc"] {with-doc}
13]
14install: ["ocaml" "setup.ml" "-install"]
15remove: [["ocamlfind" "remove" "gperftools"]]
16depends: [
17 "ocaml" {< "4.09.0"}
18 "ocamlfind" {build}
19 "ocamlbuild" {build}
20 "oasis" {build}
21]
22depexts: [
23 ["libgoogle-perftools-dev"] {os-family = "debian"}
24 ["gperftools"] {os-distribution = "homebrew"}
25 ["gperftools-devel"] {os-distribution = "centos"}
26]
27synopsis: "Bindings to gperftools"
28description:
29 "gperftools library provides fast, multi-threaded malloc() and some nifty performance analysis tools"
30flags: light-uninstall
31url {
32 src:
33 "https://ygrek.org/p/release/ocaml-gperftools/ocaml-gperftools-0.3.tar.gz"
34 checksum: [
35 "sha256=0803960900794026cd3ff5797c7631cb40031092bc8c986d2e284fa90074ffc9"
36 "md5=5150d909478484c56963a49c1862a578"
37 ]
38 mirrors:
39 "https://github.com/ygrek/ocaml-gperftools/releases/download/v0.3/ocaml-gperftools-0.3.tar.gz"
40}