this repo has no description
1opam-version: "2.0"
2maintainer: "mzp <mzp.ppp@gmail.com>"
3authors: "mzp <mzp.ppp@gmail.com>"
4homepage: "http://github.com/msgpack/msgpack-ocaml/"
5bug-reports: "https://github.com/msgpack/msgpack-ocaml/issues"
6dev-repo: "git+https://github.com/msgpack/msgpack-ocaml.git"
7build: [
8 [
9 "ocaml"
10 "setup.ml"
11 "-configure"
12 "--prefix"
13 prefix
14 "--%{ppx_meta_conv:enable}%-conv"
15 ]
16 ["ocaml" "setup.ml" "-build"]
17 ["ocaml" "setup.ml" "-configure" "--enable-tests"] {with-test}
18 ["ocaml" "setup.ml" "-build"] {with-test}
19 ["ocaml" "setup.ml" "-test"] {with-test}
20]
21install: ["ocaml" "setup.ml" "-install"]
22depends: [
23 "ocaml" {>= "4.01.0" & < "5.0"}
24 "ocamlfind" {build}
25 "ocamlbuild" {build}
26 "num"
27 "base-bytes"
28 "ounit" {with-test}
29]
30depopts: [
31 "ppx_meta_conv"
32]
33conflicts: [
34 "ppx_meta_conv" {>= "4.0.0"}
35]
36synopsis: "Msgpack library for OCaml"
37description: """
38MessagePack is an efficient binary serialization format.
39If ppx_meta_conv is installed, conv module will be installed."""
40url {
41 src: "https://github.com/msgpack/msgpack-ocaml/archive/1.3.0.tar.gz"
42 checksum: [
43 "sha256=81ff52b10beba9a99c51211925d3452e0f5239e595d4f49adc3b9944d8bc00cf"
44 "md5=09d28af795069e45b3e8209a87897ce1"
45 ]
46}