forked from ocaml-community/utop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopam
38 lines (38 loc) · 766 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
36
37
38
opam-version: "1.2"
maintainer: "jeremie@dimino.org"
authors: ["Jérémie Dimino"]
license: "BSD3"
homepage: "https://github.com/diml/utop"
bug-reports: "https://github.com/diml/utop/issues"
dev-repo: "git://github.com/diml/utop.git"
build: [
["./configure"
"--prefix" prefix
"--%{camlp4:enable}%-camlp4"
"--%{ppx_tools:enable}%-interact"]
[make]
]
install: [
[make "install"]
]
build-doc: [
["ocaml" "setup.ml" "-doc"]
]
remove: [
["ocamlfind" "remove" "utop"]
]
depends: [
"base-unix"
"base-threads"
"ocamlfind" {>= "1.4.0"}
"lambda-term" {>= "1.2"}
"lwt"
"react" {>= "1.0.0"}
"cppo" {>= "1.1.2"}
"oasis" {>= "0.3.0"}
]
depopts: [
"camlp4"
"ppx_tools"
]
available: [ ocaml-version >= "4.01" ]