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.1.tar.gz" 30 checksum: [ 31 "sha256=596e0498663b7099ec8ea15fafed6815eadb776364b1d7dc9ef029c31d3b90b2" 32 "md5=f733055a6b0e636441975aa61d8660ad" 33 ] 34}