this repo has no description
at main 1.3 kB view raw
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" 8patches: ["fix-parallel-build.patch"] 9build: [ 10 [ "python2.7" "scripts/mk_make.py" "--ml" ] 11 [ make "-C" "build" "-j" jobs ] 12 [ "sh" "-c" "cp build/libz3* build/api/ml/" ] 13] 14install: [ 15 [ "sh" "-c" "ocamlfind install z3 build/api/ml/META -nodll build/api/ml/*" ] 16] 17remove: ["ocamlfind" "remove" "z3"] 18depends: [ 19 "ocaml" {< "5.0"} 20 "ocamlfind" {build} 21 "num" 22 "conf-gmp" 23 "conf-python-2-7" {build} 24 "conf-c++" {build} 25] 26x-ci-accept-failures: ["debian-unstable"] 27synopsis: "Z3 solver" 28flags: light-uninstall 29url { 30 src: "https://github.com/Z3Prover/z3/archive/z3-4.6.0.tar.gz" 31 checksum: [ 32 "sha256=511da31d1f985cf0c79b2de05bda4e057371ba519769d1546ff71e1304fe53c9" 33 "md5=407e67957dd5d8776bdeb988fcb69d3e" 34 ] 35} 36extra-source "fix-parallel-build.patch" { 37 src: 38 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/z3/fix-parallel-build.patch" 39 checksum: [ 40 "sha256=a0ceadd603d55a4c1a4584bcbc44eaf8bae2529a74c3343395f507c0ac2baea0" 41 "md5=54516d6bf1f1005508f5cbfe9c53dad2" 42 ] 43}