this repo has no description
1opam-version: "2.0"
2maintainer: "whitequark <whitequark@whitequark.org>"
3authors: "whitequark <whitequark@whitequark.org>"
4homepage: "https://github.com/whitequark/ocaml-lz4"
5bug-reports: "https://github.com/whitequark/ocaml-lz4/issues"
6license: "BSD-3-Clause"
7doc: "http://whitequark.github.io/ocaml-lz4"
8tags: ["compression"]
9dev-repo: "git+https://github.com/whitequark/ocaml-lz4.git"
10build: [
11 ["ocaml" "setup.ml" "-configure" "--prefix" prefix]
12 ["ocaml" "setup.ml" "-build"] {os != "macos"}
13 [
14 "ocaml"
15 "setup.ml"
16 "-build"
17 "-cflags"
18 "-ccopt,-I,-ccopt,/usr/local/include"
19 ] {os = "macos"}
20 ["ocaml" "setup.ml" "-configure" "--prefix" prefix "--enable-tests"]
21 {with-test}
22 ["ocaml" "setup.ml" "-build"] {with-test}
23 ["ocaml" "setup.ml" "-test"] {with-test}
24 ["ocaml" "setup.ml" "-doc"] {with-doc}
25]
26install: ["ocaml" "setup.ml" "-install"]
27remove: ["ocamlfind" "remove" "lz4"]
28depends: [
29 "ocaml" {< "5.0"}
30 "base-bytes"
31 "base-bigarray"
32 "ocamlfind" {build}
33 "ocamlbuild" {build & != "0.9.0"}
34 "ctypes" {>= "0.4.1" & < "0.21.0"}
35 "ounit" {with-test}
36 "conf-liblz4"
37]
38synopsis: "Bindings for LZ4, a very fast lossless compression algorithm"
39flags: light-uninstall
40url {
41 src: "https://github.com/whitequark/ocaml-lz4/archive/v1.1.1.tar.gz"
42 checksum: [
43 "sha256=0dd8f2d2ce789d6f70656b458c1bba2ed6a4c338cf991fe468475159607279aa"
44 "md5=a4db848b6d584f8f8e93fd2ecf1b684d"
45 ]
46}