this repo has no description
1opam-version: "2.0"
2build: [
3 ["dune" "subst"] {dev}
4 ["dune" "build" "-p" name "-j" jobs]
5 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
6 ["dune" "build" "-p" name "@doc"] {with-doc}
7]
8maintainer: ["martin@mjambon.com" "rudi.grinberg@gmail.com"]
9authors: ["Martin Jambon"]
10bug-reports: "https://github.com/mjambon/easy-format/issues"
11homepage: "https://github.com/mjambon/easy-format"
12doc: "https://mjambon.github.io/easy-format/"
13license: "BSD-3-Clause"
14dev-repo: "git+https://github.com/mjambon/easy-format.git"
15synopsis:
16 "High-level and functional interface to the Format module of the OCaml standard library"
17description: """
18
19This module offers a high-level and functional interface to the Format module of
20the OCaml standard library. It is a pretty-printing facility, i.e. it takes as
21input some code represented as a tree and formats this code into the most
22visually satisfying result, breaking and indenting lines of code where
23appropriate.
24
25Input data must be first modelled and converted into a tree using 3 kinds of
26nodes:
27
28* atoms
29* lists
30* labelled nodes
31
32Atoms represent any text that is guaranteed to be printed as-is. Lists can model
33any sequence of items such as arrays of data or lists of definitions that are
34labelled with something like "int main", "let x =" or "x:"."""
35depends: [
36 "dune" {>= "1.10"}
37 "ocaml" {>= "4.02.3" & < "5.0"}
38]
39url {
40 src:
41 "https://github.com/mjambon/easy-format/releases/download/1.3.2/easy-format-1.3.2.tbz"
42 checksum: [
43 "sha256=3440c2b882d537ae5e9011eb06abb53f5667e651ea4bb3b460ea8230fa8c1926"
44 "sha512=e39377a2ff020ceb9ac29e8515a89d9bdbc91dfcfa871c4e3baafa56753fac2896768e5d9822a050dc1e2ade43c8967afb69391a386c0a8ecd4e1f774e236135"
45 ]
46}