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