this repo has no description
1opam-version: "2.0"
2maintainer: "codinuum@me.com"
3authors: "Gerd Stolpmann <gerd@gerd-stolpmann.de>"
4homepage: "http://projects.camlcity.org/projects/pxp.html"
5dev-repo: "git+https://gitlab.camlcity.org/gerd/lib-pxp.git"
6bug-reports: "ocaml-pxp-users@orcaware.com"
7license: "MIT/X11"
8patches: "408.patch" {ocaml:version >= "4.08.0"}
9build: [
10 [
11 "./configure"
12 "-without-wlex"
13 "-without-wlex-compat"
14 "-lexlist"
15 "utf8,iso88591"
16 ]
17 [make "all"]
18 [make "opt"]
19]
20install: [make "install" "MANDIR=%{man}%"]
21depends: [
22 "ocaml" {>= "4.01"}
23 "ocamlfind" {build}
24 "ocamlnet" {>= "4.1.0"}
25 "ulex"
26]
27synopsis: "Polymorphic XML Parser"
28description: """
29PXP is an XML parser for OCaml. It represents the parsed document
30either as tree or as stream of events. In tree mode, it is possible to
31validate the XML document against a DTD.
32
33The acronym PXP means Polymorphic XML Parser. This name reflects the
34ability to create XML trees with polymorphic type parameters."""
35url {
36 src: "http://download.camlcity.org/download/pxp-1.2.9.tar.gz"
37 checksum: [
38 "sha256=b1ba8f305913b7e9d0bcbce0c532aeb28a79396e08f178b119c2050835ab1c7b"
39 "md5=8002253eade813b8355500f4c59f8da8"
40 ]
41 mirrors: "http://download2.camlcity.org/download/pxp-1.2.9.tar.gz"
42}
43extra-source "408.patch" {
44 src:
45 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/pxp/408.patch"
46 checksum: [
47 "sha256=abb586855d02c07a8f040fac07b03776a9439f140db8b021de35721c9fb67365"
48 "md5=f9909ef9d83c30204c1cd3a1e8c4c784"
49 ]
50}