forked from FStarLang/FStar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfstar.opam
51 lines (51 loc) · 1.49 KB
/
fstar.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
39
40
41
42
43
44
45
46
47
48
49
50
51
opam-version: "2.0"
version: "0.9.7.0-alpha1"
maintainer: "[email protected]"
authors: "Nik Swamy <[email protected]>,Jonathan Protzenko <[email protected]>,Tahina Ramananandro <[email protected]>"
homepage: "http://fstar-lang.org"
license: "Apache-2.0"
depends: [
"ocaml" {>= "4.04.0" & < "4.10.0" }
"ocamlfind"
"batteries"
"zarith"
"stdint"
"yojson"
"ocamlbuild" {build}
"fileutils"
"menhir" {>= "20161115" build}
"pprint" {build}
"ulex" {build}
"ppx_deriving"
"ppx_deriving_yojson"
"process"
"ocaml-migrate-parsetree"
]
depexts: ["coreutils"] {os = "macos" & os-distribution = "homebrew"}
build: [
[make "PREFIX=%{prefix}%" "-C" "src/ocaml-output"]
[make "PREFIX=%{prefix}%" "-C" "ulib" "install-fstarlib"]
[make "PREFIX=%{prefix}%" "-C" "ulib" "install-fstar-tactics"]
]
install: [
[make "PREFIX=%{prefix}%" "-C" "src/ocaml-output" "install"]
]
remove: [
[ "rm" "-rf"
"%{prefix}%/lib/fstar"
"%{prefix}%/doc/fstar"
"%{prefix}%/etc/fstar"
"%{prefix}%/bin/fstar.exe"
"%{prefix}%/share/fstar" ]
[ "ocamlfind" "remove" "fstarlib" ]
[ "ocamlfind" "remove" "fstar-compiler-lib" ]
[ "ocamlfind" "remove" "fstar-tactics-lib" ]
]
dev-repo: "git://github.com/FStarLang/FStar"
bug-reports: "https://github.com/FStarLang/FStar/issues"
synopsis: "Verification system for effectful programs"
flags: light-uninstall
url {
src: "https://github.com/FStarLang/FStar/archive/V0.9.7.0-alpha1.zip"
checksum: "md5=78414a6a5a0ca0c7770a43a36c5f31f7"
}