this repo has no description
1opam-version: "2.0"
2maintainer: "weng@cs.jhu.edu"
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"
8depexts: [
9 ["python3-distutils"] {os-family = "debian"}
10]
11patches: ["fix-gcc-13.patch"]
12build: [
13 [ "python3" "scripts/mk_make.py" "--ml" ]
14 [ make "-C" "build" "-j" jobs ]
15]
16
17install: [
18 [ "sh" "-c" "ocamlfind install z3 build/api/ml/* -dll build/libz3.*"]
19 [ "cp" "build/z3" "%{bin}%/z3"]
20]
21
22depends: [
23 "ocaml" {>= "4.08.0"}
24 "ocamlfind" {build}
25 "zarith"
26 "conf-gmp"
27 "conf-python-3" {build}
28 "conf-c++" {build}
29]
30x-ci-accept-failures: [
31 "centos-7" "oraclelinux-7" # C compiler is too old
32]
33conflicts: [
34 "ocaml-option-bytecode-only"
35]
36synopsis: "Z3 solver"
37url {
38 src:
39 "https://github.com/Z3Prover/z3/archive/refs/tags/z3-4.12.2.tar.gz"
40 checksum: [
41 "sha256=9f58f3710bd2094085951a75791550f547903d75fe7e2fcb373c5f03fc761b8f"
42 "sha512=375477cbbc9837b44e752c89916409d07bf6a73830b52878aab4f376f08b37dd5ab485da225744d394ab15f2a7e1014edc3be5eb9962934c440a8d55259317e2"
43 ]
44}
45extra-source "fix-gcc-13.patch" {
46 src:
47 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/z3/fix-gcc-13.patch"
48 checksum: [
49 "sha256=1d733479122080f423937364b8d0b824f6f7783c6a0d53f5e014215cfdb5ffc4"
50 "md5=f9078b5316a8f8cc8f11a3846a21811e"
51 ]
52}