forked from whitequark/ocaml-lz4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
opam
35 lines (35 loc) · 942 Bytes
/
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
31
32
33
34
35
opam-version: "1.2"
name: "lz4"
version: "1.1.1"
maintainer: "whitequark <[email protected]>"
authors: [ "whitequark <[email protected]>" ]
license: "BSD-3-clause"
homepage: "https://github.com/whitequark/ocaml-lz4"
doc: "http://whitequark.github.io/ocaml-lz4"
bug-reports: "https://github.com/whitequark/ocaml-lz4/issues"
dev-repo: "git://github.com/whitequark/ocaml-lz4.git"
tags: [ "syntax" ]
build: [
["ocaml" "setup.ml" "-configure" "--prefix" prefix]
["ocaml" "setup.ml" "-build"]
]
build-test: [
["ocaml" "setup.ml" "-configure" "--prefix" prefix "--enable-tests"]
["ocaml" "setup.ml" "-build"]
["ocaml" "setup.ml" "-test"]
]
build-doc: [
["ocaml" "setup.ml" "-doc"]
]
install: [["ocaml" "setup.ml" "-install"]]
remove: [["ocamlfind" "remove" "lz4"]]
depends: [
"base-bytes"
"ocamlfind"
"ctypes" {>= "0.4.1"}
"ounit" {test}
]
depexts: [
[["debian"] ["liblz4-dev"]]
[["ubuntu"] ["liblz4-dev"]]
]