-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathzstd.opam
30 lines (30 loc) · 896 Bytes
/
zstd.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
27
28
29
30
opam-version: "2.0"
maintainer: "ygrek@autistici.org"
homepage: "https://github.com/ygrek/ocaml-zstd"
license: "BSD-3-Clause"
authors: [ "ygrek" ]
tags: [ "org:ygrek" "clib:zstd" ]
doc: [ "https://ygrek.org/p/ocaml-zstd/api/index.html" ]
dev-repo: "git://github.com/ygrek/ocaml-zstd.git"
bug-reports: "https://github.com/ygrek/ocaml-zstd/issues"
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs
"@install"
"@doc" {with-doc}
"@runtest" {with-test}]
]
depends: [
"ocaml"
"dune" {>= "3.7"}
"ctypes"
"integers"
("extlib" {with-test} | "extlib-compat" {with-test})
"base-unix" {with-test}
"conf-zstd"
]
synopsis: "Bindings to zstd compression library"
description: """
Zstd, short for Zstandard, is a fast lossless compression algorithm,
targeting real-time compression scenarios at zlib-level compression ratio.
See http://zstd.net/ for more info."""