this repo has no description
1opam-version: "2.0"
2maintainer: "simon@aestheticintegration.com"
3authors: "MSR"
4homepage: "https://github.com/Z3prover/z3"
5bug-reports: "https://github.com/Z3prover/z3/issues"
6license: "MIT"
7dev-repo: "git+https://github.com/Z3prover/z3.git"
8patches: ["fix-parallel-build.patch"]
9build: [
10 [ "python2.7" "scripts/mk_make.py" "--ml" ]
11 [ make "-C" "build" "-j" jobs ]
12 [ "sh" "-c" "cp build/libz3* build/api/ml/" ]
13]
14install: [
15 [ "sh" "-c" "ocamlfind install z3 build/api/ml/META -nodll build/api/ml/*" ]
16]
17remove: ["ocamlfind" "remove" "z3"]
18depends: [
19 "ocaml" {< "5.0"}
20 "ocamlfind" {build}
21 "num"
22 "conf-gmp"
23 "conf-python-2-7" {build}
24 "conf-c++" {build}
25]
26synopsis: "Z3 solver"
27flags: light-uninstall
28url {
29 src:
30 "https://github.com/Z3Prover/z3/releases/download/z3-4.7.1/z3-4.7.1.tar.gz"
31 checksum: [
32 "sha256=d165d68739ee15b4b73c0498225982d5a048e909e5e851b73fa6bcc7cfe228ab"
33 "md5=6402fcbd54150a1583aa89017db38335"
34 ]
35}
36extra-source "fix-parallel-build.patch" {
37 src:
38 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/z3/fix-parallel-build.patch"
39 checksum: [
40 "sha256=a0ceadd603d55a4c1a4584bcbc44eaf8bae2529a74c3343395f507c0ac2baea0"
41 "md5=54516d6bf1f1005508f5cbfe9c53dad2"
42 ]
43}