-
Notifications
You must be signed in to change notification settings - Fork 1
/
opam
35 lines (34 loc) · 827 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: "2.0"
name: "eliomlang"
maintainer: "Gabriel Radanne <[email protected]>"
authors: [ "Gabriel Radanne" ]
homepage: "https://github.com/ocsigen/eliomlang"
bug-reports: "https://github.com/ocsigen/eliomlang/issues"
dev-repo: "https://github.com/ocsigen/eliomlang.git"
license: "ISC"
version: "dev"
tags: [ "ocsigen" "eliom" "web" ]
build: [
["ocaml" "setup.ml" "-configure"
"--enable-tests" {test}
"--prefix" prefix
"--datadir" lib
]
["ocaml" "setup.ml" "-build"]
]
build-doc: ["ocaml" "setup.ml" "-doc"]
install: ["ocaml" "setup.ml" "-install"]
remove: [
["rm" "-rf" "%{lib}%/eliomlang"]
["rm" "-rf" "%{doc}%/eliomlang"]
]
depends: [
"ocaml" {>= "4.03.0"}
"ocamlfind" {build}
"ocamlbuild" {build}
"lwt"
"js_of_ocaml"
"ppx_tools"
"ppx_core"
"re"
]