forked from dbuenzli/omod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
opam
31 lines (29 loc) · 826 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
opam-version: "2.0"
maintainer: "Daniel Bünzli <daniel.buenzl [email protected]>"
authors: ["The omod programmers"]
homepage: "https://erratique.ch/software/omod"
doc: "https://erratique.ch/software/omod/doc"
license: "ISC"
dev-repo: "git+https://erratique.ch/repos/omod.git"
bug-reports: "https://github.com/dbuenzli/omod/issues"
tags: [ "org:erratique" "dev" "toplevel" "repl" ]
depends:
[
"ocaml" {>= "4.03.0"}
"ocamlfind" {build}
"ocamlbuild" {build}
"topkg" {build & >= "0.9.1"}
"cmdliner" {>= "1.0.2"}
]
build:
[[ "ocaml" "pkg/pkg.ml" "build"
"--dev-pkg" "%{pinned}%"
"--lib-dir" "%{lib}%" ]
]
# Following is only to deal with
# https://caml.inria.fr/mantis/view.php?id=7808
install:
[
["install" "-d" "%{lib}%/ocaml/"]
["install" "src/omod.top" "src/omod.nattop" "%{lib}%/ocaml/"]
]