-
Notifications
You must be signed in to change notification settings - Fork 19
/
opam
32 lines (32 loc) · 826 Bytes
/
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
opam-version: "1.2"
name: "msgpack"
version: "1.3.0"
maintainer: "mzp <mzp.ppp@gmail.com>"
author: "mzp <mzp.ppp@gmail.com>"
homepage: "http://github.com/msgpack/msgpack-ocaml/"
dev-repo: "https://github.com/msgpack/msgpack-ocaml.git"
bug-reports: "https://github.com/msgpack/msgpack-ocaml/issues"
build: [
["ocaml" "setup.ml" "-configure" "--prefix" prefix "--%{ppx_meta_conv:enable}%-conv"]
["ocaml" "setup.ml" "-build"]
]
build-test: [
["ocaml" "setup.ml" "-configure" "--enable-tests"]
["ocaml" "setup.ml" "-build"]
["ocaml" "setup.ml" "-test"]
]
install: [
["ocaml" "setup.ml" "-install"]
]
remove: [
["ocamlfind" "remove" "msgpack"]
]
available: [ ocaml-version >= "4.01.0" ]
depends: [
"ocamlfind" {build}
"ocamlbuild" {build}
"base-num"
"base-bytes"
"ounit" {test}
]
depopts: ["ppx_meta_conv"]