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