-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.12 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
{
"name": "esy-z3",
"version": "4.8.12000",
"description": "z3 packaged for esy",
"source": "https://github.com/Z3Prover/z3/archive/refs/tags/z3-4.12.3.tar.gz#md5:a18ea8cc1ba59d87a6ea966227732038",
"override": {
"exportedEnv": {
"DYLD_LIBRARY_PATH": {
"val": "#{self.lib / 'z3' : $DYLD_LIBRARY_PATH}",
"scope": "global"
},
"LD_LIBRARY_PATH": {
"val": "#{self.lib / 'z3' : $LD_LIBRARY_PATH}",
"scope": "global"
}
},
"buildsInSource": true,
"build": [
[
"python3",
"scripts/mk_make.py",
"--prefix=#{self.install}",
"--ml"
],
[
"make",
"-C",
"build",
"-j",
"4"
],
[
"sh",
"-c",
"cp build/libz3* build/api/ml/"
]
],
"install": [
[
"sh",
"-c",
"ocamlfind install z3 build/api/ml/META -nodll build/api/ml/*"
]
],
"dependencies": {
"@opam/zarith": "*",
"@opam/conf-python-3-7": "*",
"@opam/ocamlfind": "*",
"@opam/conf-gmp": "*",
"ocaml": ">=4.3.0"
}
}
}