this repo has no description
1opam-version: "2.0" 2maintainer: "7895506+MSoegtropIMC@users.noreply.github.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" 8# OK, this is really ugly, but it is quite hard to do this via z3's make system 9# using an already installed opam z3. 10# Also this should be quite robust with just source 2 files and opam knowns the 11# library folder better than any configure script. 12build: [ 13 [ "g++" 14 "-I./src/api/c++" 15 "-I./src/api" 16 "-std=c++11" 17 "-L%{lib}%/stublibs" 18 "-o" "z3_tptp" 19 "examples/tptp/tptp5.cpp" "examples/tptp/tptp5.lex.cpp" 20 "-lz3" 21 "-Wl,-rpath" 22 "-Wl,%{lib}%/stublibs" 23 ] 24] 25install: [ "cp" "z3_tptp" "%{bin}%/z3_tptp" ] 26depends: [ 27 "z3" { = "4.10.1" } 28 "conf-g++" {build} 29] 30synopsis: "TPTP front end for Z3 solver" 31url { 32 src: 33 "https://github.com/Z3Prover/z3/archive/refs/tags/z3-4.10.1.tar.gz" 34 checksum: [ 35 "sha256=a86071a03983b3512c44c2bf130adbc3320770dc0198805f6f51c43b0946e11a" 36 "sha512=6c8e9f074d4b87f9388384d10dcde51fbdf0e1ee58cf2a5d321e3779ac5054a0ec7bfed3df4f8d3563c457ca7f5189ca310909656e500b6a8803f0df2c693baf" 37 ] 38}