-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathopam
37 lines (37 loc) · 1.16 KB
/
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
opam-version: "2.0"
maintainer: "[email protected]"
homepage: "https://github.com/mfp/extprot"
license: "MIT"
authors: ["Mauricio Fernandez <[email protected]>"]
doc: ["https://github.com/mfp/extprot/blob/master/README.md"]
dev-repo: "git://github.com/mfp/extprot.git"
bug-reports: "https://github.com/mfp/extprot/issues"
build: [
["omake"]
["omake" "test"] {with-test}
]
install: [
["omake" "install" "prefix=%{prefix}%"]
]
remove: [
["ocamlfind" "remove" "extprot"]
["rm" "-f" "%{bin}%/extprotc" "%{bin}%/extprotc.exe"]
]
depends: [
"ocaml" {>= "4.02.0"}
"omake" {build}
"ocamlfind" {build}
"ounit" {with-test}
"base64" {with-test}
"camlp4" {build}
("extlib" {>= "1.7.7"} | "extlib-compat" {>="1.7.7"})
"base-bytes"
]
synopsis:
"Extensible binary protocols for cross-language communication and long-term serialization"
description: """
extprot allows you to create compact, efficient, extensible, binary protocols that can
be used for cross-language communication and long-term data serialization.
extprot supports protocols with rich, composable types, whose definition can evolve
while keeping both forward and backward compatibility."""
flags: light-uninstall