this repo has no description
1opam-version: "2.0" 2synopsis: "Bindings to the LZ4 compression algorithm" 3maintainer: "whitequark <whitequark@whitequark.org>" 4authors: [ "whitequark <whitequark@whitequark.org>" ] 5license: "BSD-3-clause" 6homepage: "https://github.com/whitequark/ocaml-lz4" 7doc: "http://whitequark.github.io/ocaml-lz4" 8bug-reports: "https://github.com/whitequark/ocaml-lz4/issues" 9dev-repo: "git+https://github.com/whitequark/ocaml-lz4.git" 10tags: [ "lz4" "compression" "decompression" ] 11build: [ 12 ["dune" "build" "@install" "-j" jobs "-p" name] 13 ["dune" "runtest" "-j" jobs "-p" name] {with-test} 14 ["dune" "build" "@doc" "-j" jobs "-p" name] {with-doc} 15] 16depends: [ 17 "ocaml" {>= "4.02"} 18 "conf-liblz4" 19 "dune" { >= "2.0" } 20 "ctypes" {>= "0.4.1" & < "0.21.0"} 21 "ounit2" {with-test} 22 "odoc" {with-doc} 23] 24url { 25 src: "https://github.com/whitequark/ocaml-lz4/archive/v1.2.0.tar.gz" 26 checksum: [ 27 "md5=d2e3d607dbc2961a94312164c309f0fa" 28 "sha512=9b817e5446c156abb00acdc3da2925bbe725600bfb2f0761079252d9aabd2abd36ea84b69bdb252cc26419009465bc629f8cc677fb68e0518a844f5c5deed00d" 29 ] 30}