forked from ocaml-batteries-team/batteries-included
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopam
27 lines (25 loc) · 736 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
opam-version: "1.2"
name: "batteries"
maintainer: "[email protected]"
authors: "OCaml batteries-included team"
homepage: "http://batteries.forge.ocamlcore.org/"
bug-reports: "https://github.com/ocaml-batteries-team/batteries-included/issues"
dev-repo: "https://github.com/ocaml-batteries-team/batteries-included.git"
license: "LGPL-2.1+ with OCaml linking exception"
doc: "http://ocaml-batteries-team.github.io/batteries-included/hdoc2/"
build: [
["ocaml" "setup.ml" "-configure" "--prefix" prefix]
[make "all"]
]
install: [
[make "install"]
]
remove: [["ocamlfind" "remove" "batteries"]]
depends: [
"ocamlfind" {>= "1.5.3"}
"ocamlbuild" {build}
"qtest" {test & >= "2.0.0"}
]
available: [
ocaml-version >= "3.12.1"
]