diff options
author | Rutger Broekhoff | 2025-08-25 19:48:19 +0200 |
---|---|---|
committer | Rutger Broekhoff | 2025-08-25 19:48:19 +0200 |
commit | 95d50b25c990e8c945ce2507b16ff3c8b039d286 (patch) | |
tree | c1ff4c7f9601c6980eed1a7235ba336c5c6f6106 /rdcapsis.opam | |
parent | 29b26dcbc1404925bbf12cddd66f7fcd3c57cfe7 (diff) | |
download | rdcapsis-95d50b25c990e8c945ce2507b16ff3c8b039d286.tar.gz rdcapsis-95d50b25c990e8c945ce2507b16ff3c8b039d286.zip |
OCaml
Diffstat (limited to 'rdcapsis.opam')
-rw-r--r-- | rdcapsis.opam | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/rdcapsis.opam b/rdcapsis.opam new file mode 100644 index 0000000..876bf93 --- /dev/null +++ b/rdcapsis.opam | |||
@@ -0,0 +1,39 @@ | |||
1 | # This file is generated by dune, edit dune-project instead | ||
2 | opam-version: "2.0" | ||
3 | synopsis: "A short synopsis" | ||
4 | description: "A longer description" | ||
5 | maintainer: ["Maintainer Name <[email protected]>"] | ||
6 | authors: ["Author Name <[email protected]>"] | ||
7 | license: "LICENSE" | ||
8 | tags: ["add topics" "to describe" "your" "project"] | ||
9 | homepage: "https://github.com/username/reponame" | ||
10 | doc: "https://url/to/documentation" | ||
11 | bug-reports: "https://github.com/username/reponame/issues" | ||
12 | depends: [ | ||
13 | "dune" {>= "3.17"} | ||
14 | "ocaml" | ||
15 | "zarith" | ||
16 | "core" | ||
17 | "dmap" | ||
18 | "delimited_parsing" | ||
19 | "re" | ||
20 | "utop" {dev} | ||
21 | "merlin" {dev} | ||
22 | "ocamlformat" {dev} | ||
23 | "odoc" {with-doc} | ||
24 | ] | ||
25 | build: [ | ||
26 | ["dune" "subst"] {dev} | ||
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 | ] | ||
39 | dev-repo: "git+https://github.com/username/reponame.git" | ||