this repo has no description
1opam-version: "2.0" 2maintainer: "Edgar Aroutiounian <edgar.factorial@gmail.com>" 3authors: "Edgar Aroutiounian <edgar.factorial@gmail.com>" 4homepage: "http://hyegar.com" 5bug-reports: "https://github.com/fxfactorial/ocaml-brotli/issues" 6license: "BSD-3-Clause" 7tags: ["clib:stdc" "clib:brotli"] 8dev-repo: "git+https://github.com/fxfactorial/ocaml-brotli.git" 9build: [ 10 ["oasis" "setup" "-setup-update" "dynamic"] 11 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 12 ["ocaml" "setup.ml" "-build"] 13 ["ocaml" "setup.ml" "-configure" "--enable-tests"] {with-test} 14 ["ocaml" "setup.ml" "-build"] {with-test} 15 ["ocaml" "setup.ml" "-test"] {with-test} 16 ["ocaml" "setup.ml" "-doc"] {with-doc} 17] 18install: ["ocaml" "setup.ml" "-install"] 19remove: ["ocamlfind" "remove" "brotli"] 20depends: [ 21 "ocaml" {>= "4.04.0" & < "4.10"} 22 "oasis" {build} 23 "ocamlfind" {build} 24 "ocamlbuild" {build} 25 "conf-brotli" 26] 27synopsis: "Bindings to Google's Brotli compresion algorithm" 28description: """ 29OCaml Bindings to brotli, Google's compression algorithm for the web 30Source: https://github.com/google/brotli/ RFC: 31http://www.ietf.org/id/draft-alakuijala-brotli""" 32flags: light-uninstall 33url { 34 src: "https://github.com/fxfactorial/ocaml-brotli/archive/v1.3.0.tar.gz" 35 checksum: [ 36 "sha256=c19d8c81f43ede5b404a1d7faebd16259d076a0709195968d76366f8dad0280e" 37 "md5=065fbba326706290c29be4f4d5b8c0b5" 38 ] 39}