this repo has no description
1opam-version: "2.0"
2synopsis:
3 "OCaml library and executable to work with the scfg configuration file format"
4description:
5 "scfg is an OCaml library and executable to work with the scfg configuration file format. It provides a parser, a pretty printer and a module to perform queries."
6maintainer: ["Léo Andrès <contact@ndrs.fr>"]
7authors: ["Léo Andrès <contact@ndrs.fr>"]
8license: "ISC"
9tags: ["scfg" "configuration" "format" "simple" "config" "parser" "printer"]
10homepage: "https://git.zapashcanon.fr/zapashcanon/scfg"
11doc: "https://doc.zapashcanon.fr/scfg"
12bug-reports: "https://git.zapashcanon.fr/zapashcanon/scfg/issues"
13depends: [
14 "dune" {>= "2.9"}
15 "bos" {>= "0.2.1"}
16 "cmdliner" {>= "1.3.0"}
17 "fmt"
18 "fpath"
19 "menhir" {>= "20211230"}
20 "ocaml" {>= "4.13"}
21 "prelude" {>= "0.5"}
22 "sedlex"
23 "odoc" {with-doc}
24]
25build: [
26 ["dune" "subst"] {dev}
27 [
28 "dune"
29 "build"
30 "-p"
31 name
32 "-j"
33 jobs
34 "--promote-install-files=false"
35 "@install"
36 "@runtest" {with-test}
37 "@doc" {with-doc}
38 ]
39 ["dune" "install" "-p" name "--create-install-files" name]
40]
41dev-repo: "git+https://git.zapashcanon.fr/zapashcanon/scfg.git"
42url {
43 src: "https://git.zapashcanon.fr/zapashcanon/scfg/archive/0.5.tar.gz"
44 checksum: [
45 "sha256=930e04c7b16fcc81e203725324ea6ace6586080f53fb87ea24c0e163588c7614"
46 "sha512=753645f5c904d48dd67dceeca12408d8bb3d9ca80ae57e9600573cf2600031c2b661cfcd70331d48cb171ce445e4826e31304ec9796ba424932bba453096c6bb"
47 ]
48}