-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathopam
30 lines (30 loc) · 867 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
opam-version: "1.2"
maintainer: "Borja o'Cook <[email protected]>"
authors: "Borja o'Cook <[email protected]>"
homepage: "https://github.com/ergl/crdt-ml/"
bug-reports: "https://github.com/ergl/crdt-ml/issues"
dev-repo: "https://github.com/ergl/crdt-ml.git"
license: "GPL-3"
build: [
["ocaml" "setup.ml" "-configure" "--prefix" prefix]
["ocaml" "setup.ml" "-build"]
]
install: ["ocaml" "setup.ml" "-install"]
build-test: [
["ocaml" "setup.ml" "-configure" "--enable-tests"]
["ocaml" "setup.ml" "-build"]
["ocaml" "setup.ml" "-test"]
]
build-doc: ["ocaml" "setup.ml" "-doc"]
remove: [
["ocamlfind" "remove" "crdt"]
["ocamlfind" "remove" "crdt_immutable"]
["ocamlfind" "remove" "crdt_mutable"]
["ocamlfind" "remove" "crdt_util"]
]
depends: [
"ocamlbuild" {build}
"ocamlfind" {build}
"qtest" {test}
]
available: [ocaml-version >= "4.02.0"]