-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (128 loc) · 2.73 KB
/
package.json
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "CoqR",
"version": "1.0",
"description": "A Coq formalisation of the R programming language",
"license": "GPL-2.0",
"esy": {
"build": "make",
"buildsInSource": "_build",
"buildEnv": {
"COQBIN": "#{@opam/coq.bin}/",
"COQLIB": "#{@opam/coq.lib}/coq/",
"COQPATH": "#{coq-flocq.install}/coq"
}
},
"scripts": {
"run": "make run",
"run_bisect": "make run_bisect",
"lrun": "make lrun",
"lrun_bisect": "make lrun_bisect",
"report": "make report"
},
"dependencies": {
"ocaml": "4.4",
"@opam/ocamlfind": "*",
"@opam/ocamlbuild": "*",
"@opam/menhir": "*",
"@opam/coq": "8.6",
"coq-flocq": "2.6.1",
"coq-paco": "*",
"@opam/extlib": "*",
"@opam/bisect": "*",
"coq-tlc": "*"
},
"resolutions": {
"coq-tlc": {
"source": "git:https://scm.gforge.inria.fr/anonscm/git/tlc/tlc.git#6c27df2",
"override": {
"dependencies": {
"@opam/coq": "8.6"
},
"buildEnv": {
"HOME": "#{self.target_dir}",
"COQBIN": "#{@opam/coq.bin}/"
},
"build": [
["make"],
["make", "install"]
]
}
},
"coq-paco": {
"source": "github:snu-sf/paco#3b686f0defa71dca3938b95893a24ad7cefea450",
"override": {
"dependencies": {
"@opam/coq": "8.6"
},
"buildEnv": {
"HOME": "#{self.target_dir}",
"COQBIN": "#{@opam/coq.bin}/"
},
"build": [
["make", "-C", "src"],
["make", "-C", "src", "doc"],
["make", "-C", "src", "install-doc"]
]
}
},
"coq-flocq": {
"source": "git:https://gitlab.inria.fr/flocq/flocq.git#2ac98b06a4dcda13175d8f8fddab71e1c3ea7573",
"override": {
"version": "2.6.1",
"dependencies": {
"@opam/coq": "8.6"
},
"buildEnv": {
"HOME": "#{self.target_dir}",
"COQBIN": "#{@opam/coq.bin}",
"COQLIB": "#{@opam/coq.lib}/coq/",
"COQPATH": "#{@opam/coq.lib}/coq/user-contrib/"
},
"build": [
["./autogen.sh"],
["./configure"],
["./remake", "--jobs=2"],
["./remake", "install"]
]
}
},
"@opam/coq": {
"source": "coq/coq#0d1438851ba3a0b9f76847abc42f3bf8ad26c4cb",
"override": {
"version": "8.6",
"dependencies": {
"ocaml": "*",
"@opam/camlp5": "*",
"@opam/ocamlfind": "1.6.2",
"@opam/ocamlbuild": "*"
},
"buildsInSource": true,
"buildEnv": {
"HOME": "#{self.install}"
},
"build": [
[
"./configure",
"-configdir",
"#{self.lib}/coq/config",
"-prefix",
"#{self.install}",
"-mandir",
"#{self.man}",
"-docdir",
"#{self.doc}",
"-libdir",
"#{self.lib}/coq",
"-datadir",
"#{self.share}/coq",
"-coqide",
"no"
],
["make", "-j2"],
["make", "install"],
["make", "clean"]
]
}
}
}
}