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/1.0.3.tar.gz"
30 checksum: [
31 "sha256=1d8e6e00d292f06ffdd13771ff233f10b54ad35f51de2ec4dccff4d00b0d85bd"
32 "md5=162eca274146befa84972ebaea4e4a78"
33 ]
34}