this repo has no description
1opam-version: "2.0"
2synopsis: "Parses C programs to an abstract syntax tree"
3description:
4 "FrontC provides a C parser and an OCaml definition of an abstract syntax treee for the C language. It also includes AST pretty-printers in plain and XML formats."
5maintainer: ["Ivan Gotovchits <ivg@ieee.org>"]
6authors: ["Hugues Cassé <casse@irit.fr> et al"]
7license: "LGPL-2.0-only"
8tags: ["FrontC" "C" "parser" "XML"]
9homepage: "https://github.com/BinaryAnalysisPlatform/FrontC"
10bug-reports: "https://github.com/BinaryAnalysisPlatform/FrontC/issues"
11depends: [
12 "ocaml" {>= "4.08.0"}
13 "dune" {>= "2.7"}
14 "menhir" {>= "20180523"}
15 "odoc" {with-doc}
16]
17build: [
18 ["dune" "subst"] {dev}
19 [
20 "dune"
21 "build"
22 "-p"
23 name
24 "-j"
25 jobs
26 "@install"
27 "@doc" {with-doc}
28 ]
29]
30dev-repo: "git+https://github.com/BinaryAnalysisPlatform/FrontC.git"
31
32url {
33 src:
34 "https://github.com/BinaryAnalysisPlatform/FrontC/archive/refs/tags/v4.1.0.tar.gz"
35 checksum: [
36 "sha256=f70063a72a39cb9192069ce3b1a20dd28f7e1c2ef6a56bbfbf7079533f2210e4"
37 "md5=08e58fa6c9eb311b03c0b85d74d2e256"
38 ]
39 mirrors: "https://mirrors.aegis.cylab.cmu.edu/bap/FrontC/v4.1.0.tar.gz"
40}