this repo has no description
1opam-version: "2.0"
2synopsis:
3 "Reading and writing of plist files in the XML format in pure OCaml"
4description: """
5Reading and writing of plist files in the XML format in pure OCaml.
6
7Implementation of https://www.apple.com/DTDs/PropertyList-1.0.dtd."""
8maintainer: ["Alan Hu <ahulambda@gmail.com>"]
9authors: ["Alan Hu <ahulambda@gmail.com>"]
10license: "MIT"
11homepage: "https://github.com/alan-j-hu/ocaml-plist-xml"
12doc: "https://alan-j-hu.github.io/ocaml-plist-xml/"
13bug-reports: "https://github.com/alan-j-hu/ocaml-plist-xml/issues"
14depends: [
15 "dune" {>= "2.7"}
16 "base64" {>= "3.4"}
17 "ISO8601" {>= "0.2.6"}
18 "menhir" {>= "20220210"}
19 "ocaml" {>= "4.13"}
20 "xmlm" {>= "1.4"}
21 "eio" {>= "0.7" & with-test}
22 "eio_main" {>= "0.7" & with-test}
23 "odoc" {with-doc}
24]
25build: [
26 ["dune" "subst"] {dev}
27 [
28 "dune"
29 "build"
30 "-p"
31 name
32 "-j"
33 jobs
34 "@install"
35 "@runtest" {with-test}
36 "@doc" {with-doc}
37 ]
38]
39dev-repo: "git+https://github.com/alan-j-hu/ocaml-plist-xml.git"
40url {
41 src:
42 "https://github.com/alan-j-hu/ocaml-plist-xml/releases/download/0.5.1/plist-xml-0.5.1.tbz"
43 checksum: [
44 "sha256=3c40af8ede1c1e0b2893e44f5caecac7f1017271e820a9a57124ac736a49a678"
45 "sha512=bfdf0e6134a0369ffd0266db75f218037619fd0709d5812aa12aea6c4f4b996bd97264e8cbbb90817347d52bb380659c50f87b23b828b44cdd1a3d1d34818226"
46 ]
47}
48x-commit-hash: "66cd5f23fb0b884e0564741f667861c16a873328"