blob: 05ba407b0fb028a2fcf28d7bb29d9755aea8dd97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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}
]
]
|