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: ["optional-python-bytecode.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.3.tar.gz"
40 checksum: [
41 "sha256=61670733eb7a74eeca13033244cbec2c4098dca24a6fa3df0e7ae12ee8f33d9c"
42 "sha512=06d667b86e2d941e8cbcafe508392f5ef9307354a97428107e26ac7ef86246a86a0096fbf92034f2a3e47efe41f95ddc74460c2c4797aadec79e14020737afcb"
43 ]
44}
45extra-source "optional-python-bytecode.patch" {
46 src:
47 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/z3/optional-python-bytecode.patch"
48 checksum: [
49 "sha256=7b0901b6447d114977db7427f7e04502917f320f82199a71e3317e4d8dd30636"
50 "md5=109de0c68786d4739c93ad71f8bda86c"
51 ]
52}