diff options
author | Clombrong <clombrong@egregore.fun> | 2025-05-29 22:29:44 +0200 |
---|---|---|
committer | Clombrong <cromblong@egregore.fun> | 2025-05-29 22:29:44 +0200 |
commit | b2bb4644c85f055fb2cfed1e0726044c7e85d00f (patch) | |
tree | a300d3c99df09aedce8e41c87c32167163ad4a88 /portal.opam | |
parent | dd1d5f910002c9e8c917938f30dfcc2c0d9bbe82 (diff) |
feat(portal): add the portal virtual package
Diffstat (limited to 'portal.opam')
-rw-r--r-- | portal.opam | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/portal.opam b/portal.opam new file mode 100644 index 0000000..8d60e7f --- /dev/null +++ b/portal.opam @@ -0,0 +1,36 @@ +# This file is generated by dune, edit dune-project instead +opam-version: "2.0" +synopsis: "Virtual package for XMPP portals" +description: """ +This library gives access to the virtual Portal module. + +In turn, the Portal module can implement various transports to XMPP (WebSockets, TCP...)""" +maintainer: ["Clombrong"] +authors: ["Clombrong"] +license: "LGPL-3.0-or-later" +tags: ["xmpp" "portal" "lwt"] +homepage: "https://forge.fsky.io/clombrong/flesh" +bug-reports: "https://forge.fsky.io/clombrong/flesh/issues" +depends: [ + "ocaml" + "dune" {>= "3.11"} + "lwt" + "merlin" {with-test} + "utop" {with-test} + "odoc" {with-doc} +] +build: [ + ["dune" "subst"] {dev} + [ + "dune" + "build" + "-p" + name + "-j" + jobs + "@install" + "@runtest" {with-test} + "@doc" {with-doc} + ] +] +dev-repo: "git+https://forge.fsky.io/clombrong/flesh.git" |