this repo has no description
1opam-version: "2.0"
2maintainer: "Maxime Ransan <maxime.ransan@gmail.com>"
3authors: [
4 "Maxime Ransan <maxime.ransan@gmail.com>"
5 "Peter Zotov <whitequark@whitequark.org>"
6]
7homepage: "https://github.com/mransan/ocaml-protoc"
8bug-reports: "https://github.com/mransan/ocaml-protoc/issues"
9license: "MIT"
10dev-repo: "git+https://github.com/mransan/ocaml-protoc.git"
11build: [
12 [make "lib.byte"]
13 [make "lib.native"] {ocaml:native}
14 [make "bin.byte"] {!ocaml:native}
15 [make "bin.native"] {ocaml:native}
16]
17install: [
18 [make "lib.install"]
19 [make "bin.install" "PREFIX=%{prefix}%" "BINDIR=%{bin}%"]
20]
21remove: [make "uninstall" "PREFIX=%{prefix}%" "BINDIR=%{bin}%"]
22depends: [
23 "ocaml" {< "5.0"}
24 "ocamlfind" {build}
25 "ocamlbuild" {build}
26 "ppx_deriving_protobuf"
27]
28synopsis: "A Protobuf Compiler for OCaml"
29description: """
30'ocaml-protoc' is a compiler of Protobuf file (.proto) to OCaml code.
31The compiler generate OCaml types with associated decoding/encoding functions following the Protobuf format."""
32url {
33 src: "https://github.com/mransan/ocaml-protoc/archive/0.1.1.2.tar.gz"
34 checksum: [
35 "sha256=806975aa0d1d3123f19c08ed9c42d73cb7a06278d0bd5415eecc3d9af86d7e41"
36 "md5=e86800b09eeb978a3234fc91385cc690"
37 ]
38}