-
Notifications
You must be signed in to change notification settings - Fork 14
/
lz4.opam
26 lines (26 loc) · 834 Bytes
/
lz4.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
opam-version: "2.0"
name: "lz4"
version: "1.3.0"
synopsis: "Bindings to the LZ4 compression algorithm"
maintainer: "whitequark <whitequark@whitequark.org>"
authors: [ "whitequark <whitequark@whitequark.org>" ]
license: "BSD-3-clause"
homepage: "https://github.com/whitequark/ocaml-lz4"
doc: "https://whitequark.github.io/ocaml-lz4/"
bug-reports: "https://github.com/whitequark/ocaml-lz4/issues"
dev-repo: "git+https://github.com/whitequark/ocaml-lz4.git"
tags: [ "lz4" "compression" "decompression" ]
build: [
["dune" "build" "@install" "-j" jobs "-p" name]
["dune" "runtest" "-j" jobs "-p" name] {with-test}
["dune" "build" "@doc" "-j" jobs "-p" name] {with-doc}
]
depends: [
"ocaml" {>= "4.02"}
"conf-liblz4"
"dune" { >= "2.0" }
"dune-configurator"
"ctypes" {>= "0.4.1"}
"ounit2" {with-test}
"odoc" {with-doc}
]