-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplist-xml.opam
42 lines (41 loc) · 1.08 KB
/
plist-xml.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.4.0"
synopsis:
"Reading and writing of plist files in the XML format in pure OCaml"
description: """
Reading and writing of plist files in the XML format in pure OCaml.
Implementation of https://www.apple.com/DTDs/PropertyList-1.0.dtd."""
maintainer: ["Alan Hu <[email protected]>"]
authors: ["Alan Hu <[email protected]>"]
license: "MIT"
homepage: "https://github.com/alan-j-hu/ocaml-plist-xml"
doc: "https://alan-j-hu.github.io/ocaml-plist-xml/"
bug-reports: "https://github.com/alan-j-hu/ocaml-plist-xml/issues"
depends: [
"dune" {>= "2.7"}
"base64" {>= "3.4"}
"cstruct" {>= "6.1"}
"ISO8601" {>= "0.2.6"}
"menhir" {>= "20220210"}
"ocaml" {>= "4.13"}
"xmlm" {>= "1.4"}
"eio" {>= "0.7" & with-test}
"eio_main" {>= "0.7" & 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://github.com/alan-j-hu/ocaml-plist-xml.git"