forked from xapi-project/xen-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
message-switch.opam.template
38 lines (38 loc) · 1.08 KB
/
message-switch.opam.template
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
31
32
33
34
35
36
37
38
opam-version: "2.0"
name: "message-switch"
maintainer: "xen-api@lists.xen.org"
authors: [ "xen-api@lists.xen.org" ]
homepage: "https://github.com/xapi-project/xen-api"
bug-reports: "https://github.com/xapi-project/xen-api/issues"
dev-repo: "git+https://github.com/xapi-project/xen-api.git"
tags: [ "org:xapi-project" ]
build: [
["./configure" "--prefix" "%{prefix}%"]
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"ocaml"
"dune" {>= "3.15"}
"odoc" {with-doc}
"cmdliner"
"cohttp-lwt-unix"
"io-page" {>= "2.4.0"}
"lwt_log"
"message-switch-lwt"
"message-switch-unix"
"mirage-block-unix" {>= "2.4.0"}
"mtime" {>= "1.0.0"}
"ppx_deriving_rpc" {with-test}
"ppx_sexp_conv"
"sexplib"
"shared-block-ring" {>= "2.3.0"}
"xapi-stdext-unix"
]
synopsis: "A simple store-and-forward message switch"
description: """
The switch stores messages in queues with well-known names. Clients use
a simple HTTP protocol to enqueue and dequeue messages."""
url {
src: "https://github.com/xapi-project/xen-api/archive/master.tar.gz"
}