this repo has no description
1opam-version: "2.0"
2license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
3synopsis:
4 "The drom tool is a wrapper over opam/dune in an attempt to provide a cargo-like user experience"
5description: """\
6The drom tool is a wrapper over opam/dune in an attempt to provide a cargo-like
7user experience. It can be used to create full OCaml projects with
8sphinx and odoc documentation. It has specific knowledge of Github and
9will generate files for Github Actions CI and Github pages.
10"""
11authors: [
12 "Fabrice Le Fessant <fabrice.le_fessant@origin-labs.com>"
13 "Léo Andrès <leo.andres@ocamlpro.com>"
14]
15maintainer: [
16 "Fabrice Le Fessant <fabrice.le_fessant@origin-labs.com>"
17 "Léo Andrès <leo.andres@ocamlpro.com>"
18]
19homepage: "https://ocamlpro.github.io/drom"
20doc: "https://ocamlpro.github.io/drom/sphinx"
21bug-reports: "https://github.com/ocamlpro/drom/issues"
22dev-repo: "git+https://github.com/ocamlpro/drom.git"
23tags: "org:ocamlpro"
24build: [
25 ["dune" "subst"] {dev}
26 ["sh" "-c" "./scripts/before.sh build '%{name}%'"]
27 [
28 "dune"
29 "build"
30 "-p"
31 name
32 "-j"
33 jobs
34 "@install"
35 "@runtest" {with-test}
36 "@doc" {with-doc}
37 ]
38 ["sh" "-c" "./scripts/after.sh build '%{name}%'"]
39]
40install: [
41 ["sh" "-c" "./scripts/before.sh install '%{name}%'"]
42]
43depends: [
44 "ocaml" {>= "4.07.0"}
45 "dune" {>= "2.7.0"}
46 "toml" {>= "7.0.0" & < "8.0.0"}
47 "ez_subst" {>= "0.1"}
48 "ez_opam_file" {>= "0.1.0" & < "1.0.0"}
49 "ez_file" {>= "0.2.0" & < "0.3.0"}
50 "ez_config" {>= "0.1.0" & < "1.0.0"}
51 "ez_cmdliner" {>= "0.4.0" & < "1.0.0"}
52 "directories" {>= "0.2" & < "0.6"}
53 "ppx_inline_test" {with-test}
54 "ppx_expect" {with-test}
55 "odoc" {with-doc}
56 "ocamlformat" {with-test}
57]
58url {
59 src: "https://github.com/OCamlPro/drom/archive/v0.6.0.tar.gz"
60 checksum: [
61 "md5=abd11ae9727899dbae6ad79639c66204"
62 "sha512=3e8e7ad76608e8025ff129b9f2ad1377585da64ee599a28e4a29419d99529e82bb90fbb6d71088ad5393b696e3df8c62b57792da32834c3158f0976c6d1c7883"
63 ]
64}