this repo has no description
1opam-version: "2.0"
2
3synopsis: "A trustworthy parser for POSIX shell"
4description: """
5Morbig is a parser for shell scripts written in the POSIX shell script
6language. It parses the scripts statically, that is without executing
7them, and constructs a concrete syntax tree for each of them. The
8concrete syntax trees are built using constructors according to the
9shell grammar of the POSIX standard.
10"""
11
12maintainer: "Nicolas Jeannerod <niols@niols.fr>"
13authors: [
14 "Yann Régis-Gianas <yann.regis-gianas@irif.fr>"
15 "Ralf Treinen <ralf.treinen@irif.fr>"
16 "Nicolas Jeannerod <niols@niols.fr>"
17]
18license: "GPL-3.0-only"
19
20homepage: "https://github.com/colis-anr/morbig"
21bug-reports: "https://github.com/colis-anr/morbig/issues"
22dev-repo: "git+https://github.com/colis-anr/morbig.git"
23
24depends: [
25 "dune" {>= "1.4.0"}
26 "menhir" {>= "20180538"}
27 "ocaml" {>= "4.04"}
28 "odoc" {with-doc}
29 "ppx_deriving" {>= "5.0"}
30 "ppx_deriving_yojson"
31 "visitors" {>= "20200207"}
32 "yojson" {>= "1.6.0" & < "2.0.0"}
33]
34
35build: ["dune" "build" "-p" name "-j" jobs]
36run-test: [make "check"]
37
38url {
39 src: "https://github.com/colis-anr/morbig/archive/0.10.4.tar.gz"
40 checksum: [
41 "md5=73ce60f81e41bee3cf4be45ed17c8be9"
42 "sha512=b059e2aaed40c468e6fcd4726ffeb4e35dd225be9edf81ddf327ba4fd52d7d2ea5ac1f5206fef13be6d3e0e0482dfa2288f21faf3717945cfed501658b28edd8"
43 ]
44}