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.03.0" & < "4.10"} 22 "oasis" {build} 23 "ocamlfind" {build} 24 "ocamlbuild" {build} 25] 26messages: 27 "Note, you'll need to have libbrotli installed: https://github.com/bagder/libbrotli" 28post-messages: [ 29 "Make sure you had libbrotli installed, get it at:https://github.com/bagder/libbrotli" 30 {failure} 31] 32synopsis: "Bindings to Google's Brotli compresion algorithm" 33description: """ 34OCaml Bindings to brotli, Google's compression algorithm for the web 35Source: https://github.com/google/brotli/ RFC: 36http://www.ietf.org/id/draft-alakuijala-brotli""" 37flags: light-uninstall 38url { 39 src: "https://github.com/fxfactorial/ocaml-brotli/archive/v1.2.1.tar.gz" 40 checksum: [ 41 "sha256=195f447ceef985fe8d9128d8c5c79aad152eea1b15f162a52c539baec47b01b9" 42 "md5=dcc5f552448bcaa86dec108257ade2f3" 43 ] 44}