diff options
author | Marc Coquand <marc@mccd.space> | 2024-05-10 15:04:43 -0500 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2024-05-10 15:04:43 -0500 |
commit | 4175da366830c0ef3bf40ddb1e6594ac5dbe3866 (patch) | |
tree | 14e84c6382fe063c1608485e2656dd245ff03198 /apbox.opam | |
download | apbox-4175da366830c0ef3bf40ddb1e6594ac5dbe3866.tar.gz apbox-4175da366830c0ef3bf40ddb1e6594ac5dbe3866.tar.bz2 apbox-4175da366830c0ef3bf40ddb1e6594ac5dbe3866.zip |
Initial commit
Diffstat (limited to '')
-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} + ] +] |