-
Notifications
You must be signed in to change notification settings - Fork 8
/
morbig.opam
48 lines (48 loc) · 1.33 KB
/
morbig.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.11.0"
synopsis: "A trustworthy parser for POSIX shell"
description: """
Morbig is a parser for shell scripts written in the POSIX shell script
language. It parses the scripts statically, that is without executing
them, and constructs a concrete syntax tree for each of them. The
concrete syntax trees are built using constructors according to the
shell grammar of the POSIX standard.
"""
maintainer: ["Nicolas “Niols” Jeannerod <[email protected]>"]
authors: [
"Yann Régis-Gianas <[email protected]>"
"Ralf Treinen <[email protected]>"
"Nicolas Jeannerod <[email protected]>"
]
license: "GPL3-only"
homepage: "https://github.com/colis-anr/morbig"
bug-reports: "https://github.com/colis-anr/morbig/issues"
depends: [
"dune" {>= "2.5"}
"conf-jq" {with-test}
"alcotest" {with-test & >= "1.7.0"}
"menhir" {>= "20200211"}
"ocaml" {>= "4.04"}
"odoc" {with-doc}
"ppx_deriving_yojson"
"qcheck" {with-test & >= "0.18"}
"qcheck-alcotest" {with-test & >= "0.18"}
"visitors" {>= "20200207"}
"yojson" {>= "1.6.0"}
]
build: [
["dune" "subst"] {pinned}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/colis-anr/morbig.git"