this repo has no description
1opam-version: "2.0"
2maintainer: "ygrek@autistici.org"
3authors: "ygrek"
4homepage: "https://github.com/ygrek/ocaml-cbor"
5bug-reports: "https://github.com/ygrek/ocaml-cbor/issues"
6dev-repo: "git+https://github.com/ygrek/ocaml-cbor.git"
7tags: "org:ygrek"
8build: [
9 [
10 "ocaml"
11 "setup.ml"
12 "-configure"
13 "--%{yojson:enable}%-tests"
14 "--prefix"
15 prefix
16 ]
17 ["ocaml" "setup.ml" "-build"]
18 ["ocaml" "setup.ml" "-test"] {with-test}
19 ["ocaml" "setup.ml" "-doc"] {with-doc}
20]
21install: ["ocaml" "setup.ml" "-install"]
22remove: [["ocamlfind" "remove" "cbor"]]
23depends: [
24 "ocaml" {>= "4.00.0"}
25 "ocamlfind" {build}
26 "base-bytes"
27 "ocplib-endian" {>= "0.6"}
28 "oasis" {>= "0.4.7"}
29 "ocamlbuild" {build}
30 "yojson" {with-test & < "2.0.0"}
31]
32synopsis: "CBOR encoder/decoder (RFC 7049) - native OCaml implementation"
33description: """
34The Concise Binary Object Representation (CBOR) is a data format whose design goals
35include the possibility of extremely small code size, fairly small message size, and
36extensibility without the need for version negotiation."""
37flags: light-uninstall
38url {
39 src: "https://ygrek.org/p/release/ocaml-cbor/ocaml-cbor-0.2.tar.gz"
40 checksum: [
41 "sha256=1867d1b0d1e3b84c090265d7cdd3fe0f8de92df934c2293b13d2a0ad2043e81a"
42 "md5=3d2f106ed2e815f5eac3c5e3bf1df475"
43 ]
44 mirrors:
45 "https://github.com/ygrek/ocaml-cbor/releases/download/0.2/ocaml-cbor-0.2.tar.gz"
46}