this repo has no description
1opam-version: "2.0" 2maintainer: "simon@aestheticintegration.com" 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" 8build: [ 9 [ "python2.7" "scripts/mk_make.py" "--ml" "--staticlib" ] 10 [ make "-C" "build" "-j" jobs ] 11] 12 13install: [ 14 [ "sh" "-c" "ocamlfind install z3 build/api/ml/* build/libz3-static.a"] 15 [ "cp" "build/z3" "%{bin}%/z3"] 16] 17 18depends: [ 19 "ocaml" {< "5.0"} 20 "ocamlfind" {build} 21 "zarith" 22 "conf-gmp" 23 "conf-python-2-7" {build} 24 "conf-c++" {build} 25] 26x-ci-accept-failures: [ 27 "centos-7" "oraclelinux-7" # C compiler is too old 28 "oraclelinux-8" # Does not ship python 2.7 29] 30synopsis: "Z3 solver" 31url { 32 src: 33 "https://github.com/Z3Prover/z3/archive/refs/tags/z3-4.8.11.tar.gz" 34 checksum: [ 35 "sha256=99e912b9af76a17f8827f89afcf4da117736f3877a8bbdd737c548c6541009d7" 36 "sha512=ceab703d0413d0135e0f4e6c3ba2bb58d6a4823385edb0bf7ecc96949a3073b687d415a2674c86c9f876adb52823f98f9fbbc107d799ed756dc16292f9864894" 37 ] 38}