this repo has no description
1opam-version: "2.0"
2synopsis: "Generate text using Markov chains"
3description:
4 "omg is an OCaml library to generate random text using Markov chains. You initialize a generator, feed it with some input, then it generates random text based on the input."
5maintainer: ["Léo Andrès <contact@ndrs.fr>"]
6authors: ["Léo Andrès <contact@ndrs.fr>"]
7license: "ISC"
8homepage: "https://git.zapashcanon.fr/zapashcanon/omg"
9doc: "https://doc.zapashcanon.fr/omg/"
10bug-reports: "https://git.zapashcanon.fr/zapashcanon/omg/issues"
11depends: [
12 "ocaml" {>= "4.05.0"}
13 "dune" {>= "1.11.0"}
14 "bisect_ppx" {< "2.6.0"}
15]
16build: [
17 ["dune" "subst"] {dev}
18 [
19 "dune"
20 "build"
21 "-p"
22 name
23 "-j"
24 jobs
25 "@install"
26 "@runtest" {with-test}
27 "@doc" {with-doc}
28 ]
29]
30dev-repo: "git+https://git.zapashcanon.fr/zapashcanon/omg.git"
31url {
32 src: "https://fs.zapashcanon.fr/archive/omg/omg-0.0.1.tbz"
33 checksum: [
34 "sha256=04bb7cab2b212766a6310475c7154c332625c3b523b13fcdfdff930a9b89a292"
35 "sha512=229e70f2e62fe4fea07b07b5050d4f2300a99cd8e4db0e43b458b0cceee31b621a4cef55096a79ae8f7c9490e90e596faf2ce8ded6b9df5128537c4ded8cf7f7"
36 ]
37}