this repo has no description
1opam-version: "2.0" 2maintainer: "ygrek@autistici.org" 3homepage: "https://github.com/ygrek/ocaml-zstd" 4license: "BSD-3-Clause" 5authors: [ "ygrek" ] 6#doc: ["http://ocurl.forge.ocamlcore.org/api/index.html"] 7dev-repo: "git+https://github.com/ygrek/ocaml-zstd.git" 8bug-reports: "https://github.com/ygrek/ocaml-zstd/issues" 9build: [ 10 ["ocaml" "setup.ml" "-configure" "--disable-tests" "--prefix" prefix] 11 ["ocaml" "setup.ml" "-build"] 12 ["ocaml" "setup.ml" "-configure" "--enable-tests" "--prefix" prefix] 13 {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: [ 19 ["ocaml" "setup.ml" "-install"] 20] 21remove: [ 22 ["ocamlfind" "remove" "zstd"] 23] 24depends: [ 25 "ocaml" 26 "ocamlfind" {build} 27 "oasis" {build} 28 "ocamlbuild" {build} 29 "ctypes" {< "0.18.0"} 30 ("extlib" {with-test} | "extlib-compat" {with-test}) 31 "base-unix" {with-test} 32 "conf-zstd" 33] 34synopsis: "Bindings to zstd compression library" 35description: """ 36Zstd, short for Zstandard, is a fast lossless compression algorithm, 37targeting real-time compression scenarios at zlib-level compression ratio. 38See http://zstd.net/ for more info.""" 39flags: light-uninstall 40url { 41 src: "https://ygrek.org/p/release/ocaml-zstd/ocaml-zstd-0.2.tar.gz" 42 checksum: [ 43 "sha256=d9cf584e0106512c60fd562dce035110c5a6b85808d7a63c63a07a724ce213d6" 44 "md5=6edef3e3fc8de3e608c9c57f171de7a6" 45 ] 46 mirrors: 47 "https://github.com/ygrek/ocaml-zstd/releases/download/v0.2/ocaml-zstd-0.2.tar.gz" 48}