diff options
Diffstat (limited to 'apbox.opam')
-rw-r--r-- | apbox.opam | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/apbox.opam b/apbox.opam new file mode 100644 index 0000000..05ba407 --- /dev/null +++ b/apbox.opam @@ -0,0 +1,30 @@ +# This file is generated by dune, edit dune-project instead +opam-version: "2.0" +synopsis: "A minimal Activitypub C2S and S2S server" +description: "A longer description" +maintainer: ["Marc Coquand"] +authors: ["Marc Coquand"] +license: "AGPL-3.0-only" +tags: ["activitypub" "minimal" "server" "sqlite"] +doc: "https://url/to/documentation" +depends: [ + "ocaml" + "dune" {>= "3.11"} + "cohttp-eio" + "zmq" + "odoc" {with-doc} +] +build: [ + ["dune" "subst"] {dev} + [ + "dune" + "build" + "-p" + name + "-j" + jobs + "@install" + "@runtest" {with-test} + "@doc" {with-doc} + ] +] |