forked from cil-project/cil
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopam
More file actions
29 lines (29 loc) · 636 Bytes
/
Copy pathopam
File metadata and controls
29 lines (29 loc) · 636 Bytes
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
opam-version: "1.2"
authors: ["gabriel@kerneis.info"]
maintainer: "gabriel@kerneis.info"
homepage: "https://cil-project.github.io/cil/"
bug-reports: "https://github.com/cil-project/cil/issues/"
dev-repo: "git+https://github.com/cil-project/cil/"
build: [
["env" "FORCE_PERL_PREFIX=1" "./configure" "--prefix" prefix]
[make]
]
build-test: [
["env" "VERBOSE=1" make "test"]
]
build-doc: [
[make "doc"]
]
install: [
make "install"
]
remove: [
["env" "FORCE_PERL_PREFIX=1" "./configure" "--prefix" prefix]
[make "uninstall"]
]
depends: [
"ocamlfind"
"ocamlbuild" {build}
"hevea" {build & doc}
"hevea" {build & test}
]