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]
11build: [
12 [ "python3" "scripts/mk_make.py" "--ml" ]
13 [ make "-C" "build" "-j" jobs ]
14]
15
16install: [
17 [ "sh" "-c" "ocamlfind install z3 build/api/ml/* -dll build/libz3.*"]
18 [ "cp" "build/z3" "%{bin}%/z3"]
19]
20
21depends: [
22 "ocaml" {< "5.0"}
23 "ocamlfind" {build}
24 "zarith"
25 "conf-gmp"
26 "conf-python-3" {build}
27 "conf-c++" {build}
28]
29x-ci-accept-failures: [
30 "centos-7" "oraclelinux-7" # C compiler is too old
31]
32synopsis: "Z3 solver"
33post-messages: [
34 """
35This version of Z3 changed the linking mode from static to dynamic.
36This change is silent and potentially breaking.
37Please make sure that you don't require static binaries in the programs using Z3.
38""" {success}
39]
40url {
41 src:
42 "https://github.com/Z3Prover/z3/archive/refs/tags/z3-4.8.13.tar.gz"
43 checksum: [
44 "sha256=59a0b35711fa7ae48dd535116d2067a6a16955fcbf2623c516a3f630cd2832d8"
45 "sha512=c5e8f34525ed3b6b2935d7f01ce2f90f5dd99b4cdd035664b36c967fb1c7f3b05abed45c7288e2261723e73d68728ee91a0f67d92012d86b04598d7b54369c30"
46 ]
47}