this repo has no description
1opam-version: "2.0"
2synopsis: "PPX to write TyXML documents with the HTML syntax"
3description: """
4```ocaml
5open Tyxml
6let%html to_ocaml = "<a href='ocaml.org'>OCaml!</a>"
7```
8
9The TyXML PPX allow to write TyXML documents using the traditional HTML syntax.
10It works with textual trees, virtual DOM trees, or any TyXML module.
11"""
12maintainer: ["dev@ocsigen.org"]
13authors: ["The ocsigen team"]
14license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
15homepage: "https://github.com/ocsigen/tyxml"
16doc: "https://ocsigen.org/tyxml/latest/manual/intro"
17bug-reports: "https://github.com/ocsigen/tyxml/issues"
18depends: [
19 "dune" {>= "2.0"}
20 "ocaml" {>= "4.04"}
21 "tyxml" {= version}
22 "tyxml-syntax" {= version}
23 "alcotest" {with-test}
24 "markup" {>= "0.7.2"}
25 "ppxlib" {>= "0.18" & < "0.36.0"}
26]
27build: [
28 ["dune" "subst"] {dev}
29 [
30 "dune"
31 "build"
32 "-p"
33 name
34 "-j"
35 jobs
36 "@install"
37 "@runtest" {with-test}
38 "@doc" {with-doc}
39 ]
40]
41dev-repo: "git+https://github.com/ocsigen/tyxml.git"
42x-commit-hash: "ef431a4bceaefb2d9248e79092e6c1a1a9420095"
43url {
44 src:
45 "https://github.com/ocsigen/tyxml/releases/download/4.5.0/tyxml-4.5.0.tbz"
46 checksum: [
47 "sha256=c69accef5df4dd89d38f6aa0baad01e8fda4e9e98bb7dad61bec1452c5716068"
48 "sha512=772535441b09c393d53c27152e65f404a0a541aa0cea1bda899a8d751ab64d1729237e583618c3ff33d75e3865d53503d1ea413c6bbc8c68c413347efd1709b3"
49 ]
50}