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" {>= "4.08.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]
32conflicts: [
33 "ocaml-option-bytecode-only"
34]
35synopsis: "Z3 solver"
36url {
37 src:
38 "https://github.com/Z3Prover/z3/archive/refs/tags/z3-4.12.6.tar.gz"
39 checksum: [
40 "sha256=9e46a1260ea26c441a1ad6faf378bf911ee9ffd110868867b4b2f2e3c7d2200e"
41 "sha512=10883877d20adbd229ad4bf65a9b50660d93d85514f933865f06920efd697f51ce34e502fbe451d4c1b2251f13d597050b8277036d4011d9c0f196111d681f8f"
42 ]
43}