51 lines
1 KiB
Text
51 lines
1 KiB
Text
(lang dune 3.11)
|
|
|
|
(name flesh)
|
|
(version 0.0)
|
|
|
|
(generate_opam_files true)
|
|
|
|
(source
|
|
(uri "git+https://forge.fsky.io/clombrong/flesh.git"))
|
|
|
|
(authors "Clombrong")
|
|
|
|
(maintainers "Clombrong")
|
|
|
|
(license LGPL-3.0-or-later)
|
|
|
|
(homepage "https://forge.fsky.io/clombrong/flesh")
|
|
(bug_reports "https://forge.fsky.io/clombrong/flesh/issues")
|
|
|
|
(package
|
|
(name flesh)
|
|
(synopsis "High-level XMPP flesh interface")
|
|
(description "An high-level XMPP library based on Lwt, compilable to native code and JS.")
|
|
(depends
|
|
ocaml
|
|
dune
|
|
lwt
|
|
(js_of_ocaml-compiler
|
|
:with-test)
|
|
(merlin :with-test))
|
|
(tags
|
|
(xmpp lwt)))
|
|
|
|
(package
|
|
(name flesh_websockets)
|
|
(synopsis "WebSockets Flesh portal")
|
|
(description "This library implements a Flesh portal for Websockets.")
|
|
(depends
|
|
ocaml
|
|
dune
|
|
js_of_ocaml
|
|
js_of_ocaml-lwt
|
|
js_of_ocaml-ppx
|
|
xmlm
|
|
(flesh
|
|
(and (= :version)
|
|
:with-test)))
|
|
(tags
|
|
(xmpp flesh websockets lwt)))
|
|
|
|
; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project
|