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"
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 "@runtest" {with-test}
28 "@doc" {with-doc}
29 ]
30]
31dev-repo: "git+https://github.com/BinaryAnalysisPlatform/FrontC.git"
32
33url {
34 src:
35 "https://github.com/BinaryAnalysisPlatform/FrontC/archive/refs/tags/v4.0.0.tar.gz"
36 checksum: [
37 "sha256=1cd4e72478b1bf03678dd3cc730400c26a0d02b883906a5f5a354907f2798279"
38 "md5=2e8875a947b12ae3de2e89b1d9b3c7fe"
39 ]
40 mirrors: "https://mirrors.aegis.cylab.cmu.edu/bap/FrontC/v4.0.0.tar.gz"
41}