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" {>= "4.02.1" & < "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.2.0.tar.gz" 30 checksum: [ 31 "sha256=8646202d492de65228e52a262b0705af53be615ff21d775c50327495d0b4df72" 32 "md5=73448a71aba6682536a2581ab0430b90" 33 ] 34}