this repo has no description
1opam-version: "2.0"
2synopsis: "OCaml library to work with DWARF format"
3description: """
4
5Owee is an experimental library to work with DWARF format.
6It can parse ELF binaries and interpret DWARF debugline programs.
7
8It can also be used to find locations of functions from the current process."""
9maintainer: ["Frédéric Bour <frederic.bour@lakaban.net>"]
10authors: ["Frédéric Bour <frederic.bour@lakaban.net>"]
11license: "MIT"
12homepage: "https://github.com/let-def/owee"
13bug-reports: "https://github.com/let-def/owee/issues"
14depends: [
15 "dune" {>= "3.0"}
16 "ocaml" {>= "4.08"}
17 "cmdliner" {with-test}
18 "odoc" {with-doc}
19]
20build: [
21 ["dune" "subst"] {dev}
22 [
23 "dune"
24 "build"
25 "-p"
26 name
27 "-j"
28 jobs
29 "@install"
30 "@runtest" {with-test}
31 "@doc" {with-doc}
32 ]
33]
34dev-repo: "git+https://github.com/let-def/owee.git"
35available: arch != "x86_32" & arch != "arm32" & arch != "s390x" & os-family != "windows"
36url {
37 src: "https://github.com/let-def/owee/releases/download/v0.8/owee-0.8.tbz"
38 checksum: [
39 "sha256=064f6245f5995d5d2f4f1f9c6d2992e2fdbe3dde328216baec7cfabd4857940d"
40 "sha512=c79cdaeedbd08ee58784e965a2865aff94d41013c4f978fd21ebd84df742402aeddaab2f1880bde0d0ff7311fe0565151882e6060590d751119ad0fd9d62a901"
41 ]
42}
43x-commit-hash: "58e0c8223295bf18a82989220493bc3afb7e733f"