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: [ 12 "gccstd-2a.patch" { (os-family = "opensuse" | os-family = "suse") | (os-distribution = "ubuntu" & os-version <= "20.04") } 13] 14build: [ 15 [ "python3" "scripts/mk_make.py" "--ml" ] 16 [ make "-C" "build" "-j" jobs ] 17] 18 19install: [ 20 [ "sh" "-c" "ocamlfind install z3 build/api/ml/* -dll build/libz3.*"] 21 [ "cp" "build/z3" "%{bin}%/z3"] 22] 23 24depends: [ 25 "ocaml" {>= "4.08.0"} 26 "ocamlfind" {build} 27 "zarith" 28 "conf-gmp" 29 "conf-python-3" {build} 30 "conf-c++" {build} 31] 32x-ci-accept-failures: [ 33 "centos-7" "oraclelinux-7" "opensuse-15.6" # C compiler is too old 34] 35conflicts: [ 36 "ocaml-option-bytecode-only" 37] 38synopsis: "Z3 solver" 39url { 40 src: 41 "https://github.com/Z3Prover/z3/archive/refs/tags/z3-4.13.2.tar.gz" 42 checksum: [ 43 "sha256=fd7dc6dd2633074f0a47670d6378b0e5c28c2c26f2b58aa23e9cd7f0bc9ba0dc" 44 "sha512=211a855ad2313aacbef67ccad9e02f4d8012ce015880383faefaae2e78785efbc167634f6c272d844dd04ba36c55a25192cae74bfd0c75a32588672ac8516e09" 45 ] 46} 47extra-source "gccstd-2a.patch" { 48 src: 49 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/z3/gccstd-2a.patch" 50 checksum: 51 "sha256=ae4088ff14739bcc2cadc90bc428f08277e898b832f6b859a46e23c584d513c8" 52}