1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup github 1.0 |
---|
6 | |
---|
7 | github.setup Z3Prover z3 4.4.1 z3- |
---|
8 | categories math devel |
---|
9 | platforms darwin |
---|
10 | maintainers nomaintainer |
---|
11 | license MIT |
---|
12 | |
---|
13 | description A high-performance theorem prover being developed at Microsoft Research. \ |
---|
14 | |
---|
15 | long_description Z3 is a state-of-the art theorem prover from Microsoft Research. It can be \ |
---|
16 | used to check the satisfiability of logical formulas over one or more theories. \ |
---|
17 | Z3 offers a compelling match for software analysis and verification tools, \ |
---|
18 | since several common software constructs map directly into supported theories. |
---|
19 | |
---|
20 | checksums rmd160 679774156c28c2eee366f72f379552d7c039a8fd \ |
---|
21 | sha256 d0a5833a2ebbff5dc82fb8ff0065f9c39ba884862c690479fade606a62d0808c |
---|
22 | |
---|
23 | configure.universal_args-delete --disable-dependency-tracking |
---|
24 | |
---|
25 | post-destroot { |
---|
26 | set docdir ${prefix}/share/doc/${name} |
---|
27 | xinstall -d ${destroot}${docdir} |
---|
28 | xinstall -m 0644 -W ${worksrcpath} \ |
---|
29 | LICENSE.txt \ |
---|
30 | README \ |
---|
31 | RELEASE_NOTES \ |
---|
32 | ${destroot}${docdir} |
---|
33 | |
---|
34 | copy ${worksrcpath}/examples ${destroot}${docdir} |
---|
35 | } |
---|