this repo has no description
1opam-version: "2.0"
2maintainer: "Gabriel Radanne <drupyog@zoho.com>"
3authors: "Gabriel Radanne <drupyog@zoho.com>"
4homepage: "https://github.com/Drup/llvmgraph"
5bug-reports: "https://github.com/Drup/llvmgraph/issues"
6license: "MIT"
7tags: [
8 "llvm"
9 "ocamlgraph"
10]
11dev-repo: "git+https://github.com/Drup/llvmgraph.git"
12build: [
13 ["ocaml" "setup.ml" "-configure" "--prefix" prefix]
14 ["ocaml" "setup.ml" "-build"]
15 ["ocaml" "setup.ml" "-configure" "--prefix" prefix "--enable-tests"]
16 {with-test}
17 ["ocaml" "setup.ml" "-build"] {with-test}
18 ["ocaml" "setup.ml" "-test"] {with-test}
19 ["ocaml" "setup.ml" "-doc"] {with-doc}
20]
21install: ["ocaml" "setup.ml" "-install"]
22remove: ["ocamlfind" "remove" "llvmgraph"]
23depends: [
24 "ocaml" {>= "4.01.0"}
25 "ocamlfind" {build}
26 "llvm" {>= "3.6" & < "15"}
27 "ocamlgraph" {>= "1.8.5" & < "2.0.0"}
28 "ocamlbuild" {build}
29 "conf-clang" {with-test}
30]
31synopsis: "Ocamlgraph overlay for llvm"
32description:
33 "This overlay allows you to read and walk (but not write) the control flow graph of an llvm function using the same interface as an ocamlgraph. In particular, read-only ocamlgraph's algorithm can be applied."
34flags: light-uninstall
35url {
36 src: "https://github.com/Drup/llvmgraph/archive/0.2.tar.gz"
37 checksum: [
38 "sha256=2acd98f0fb017bd95dc59d329be20d2b1ffbca6f53afdd3ad5e3b6271c8ecb8d"
39 "md5=3427e4d33667338b11d995afcdc7bff0"
40 ]
41}