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 "Make sure you have at least gcc 5.4, gcc4 will not understand -std=c++14, -fsanitize-undefined-trap-on-error" 32 {failure & os = "linux"} 33] 34synopsis: "Bindings to Google's Brotli compresion algorithm" 35description: """ 36OCaml Bindings to brotli, Google's compression algorithm for the web 37Source: https://github.com/google/brotli/ RFC: 38http://www.ietf.org/id/draft-alakuijala-brotli""" 39flags: light-uninstall 40url { 41 src: "https://github.com/fxfactorial/ocaml-brotli/archive/v1.2.2.tar.gz" 42 checksum: [ 43 "sha256=1f501698f481e373dfbf230dead8ca09bb93adff2e980c0f661543269477c1de" 44 "md5=26412c8835e49b888d5e4a0693ed6f41" 45 ] 46}