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 24available: [os != "macos"] 25x-ci-accept-failures: ["debian-unstable"] 26depends: [ 27 "menhir" {>= "20151023"} 28 "ocaml" {build & >= "4.03" & < "5.1"} 29 "ocamlbuild" {build} 30 "ppx_deriving_yojson" 31 "visitors" {>= "20170308"} 32 "yojson" {< "2.0.0"} 33] 34 35build: [make] 36install: [make "install"] 37remove: [make "uninstall"] 38 39run-test: [make "check"] 40url { 41 src: "https://github.com/colis-anr/morbig/archive/v0.9.1.tar.gz" 42 checksum: [ 43 "md5=2a1b7a85a095a6229d099972142c3f6b" 44 "sha512=4b3dca99870de7863701fa887cc1d4135ecb5b5523a22b7df8a553da8d17f40c40062e2c968b3538ad3cb40e923af639f895b48c8aa73b1d3c806811ca0b662f" 45 ] 46}