this repo has no description
1opam-version: "2.0" 2maintainer: "ygrek@autistici.org" 3homepage: "https://github.com/mfp/extprot" 4license: "MIT" 5authors: ["Mauricio Fernandez <mfp@acm.org>"] 6doc: ["https://github.com/mfp/extprot/blob/master/README.md"] 7dev-repo: "git+https://github.com/mfp/extprot.git" 8bug-reports: "https://github.com/mfp/extprot/issues" 9build: [ 10 ["omake"] 11 ["omake" "test"] {with-test} 12] 13install: [ 14 ["omake" "install" "prefix=%{prefix}%"] 15] 16remove: [ 17 ["ocamlfind" "remove" "extprot"] 18 ["rm" "-f" "%{bin}%/extprotc" "%{bin}%/extprotc.exe"] 19] 20depends: [ 21 "ocaml" {>= "4.02.0"} 22 "omake" {build} 23 "ocamlfind" {build} 24 "ounit" {with-test} 25 "camlp4" {build} 26 ("extlib" {< "1.7.8"} | "extlib-compat") 27 "base-bytes" 28] 29synopsis: 30 "Extensible binary protocols for cross-language communication and long-term serialization" 31description: """ 32extprot allows you to create compact, efficient, extensible, binary protocols that can 33be used for cross-language communication and long-term data serialization. 34extprot supports protocols with rich, composable types, whose definition can evolve 35while keeping both forward and backward compatibility.""" 36flags: light-uninstall 37url { 38 src: 39 "https://github.com/mfp/extprot/releases/download/v1.6.0/extprot-1.6.0.tar.gz" 40 checksum: [ 41 "sha256=0e190d1f93c065a5aac64045986e5f34fa832290f93e2873bacf43521f1d1d9d" 42 "md5=7cb1c2821c493a96505c4905ddf03caa" 43 ] 44}