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 MIT z3 4.4.1 |
---|
8 | |
---|
9 | categories math devel |
---|
10 | platforms darwin |
---|
11 | maintainers nomaintainer |
---|
12 | description A high-performance theorem prover being developed at Microsoft Research. \ |
---|
13 | long_description Z3 is a state-of-the art theorem prover from Microsoft Research. It can be \ |
---|
14 | used to check the satisfiability of logical formulas over one or more theories. \ |
---|
15 | Z3 offers a compelling match for software analysis and verification tools, \ |
---|
16 | since several common software constructs map directly into supported theories. |
---|
17 | license MIT |
---|
18 | homepage https://github.com/Z3Prover/z3/ |
---|
19 | master_sites https://github.com/Z3Prover/${name}/archive |
---|
20 | checksums rmd160 513db261456e1e8d5eedbeac9b5f60a35524a84a \ |
---|
21 | sha256 5bb469fcb5448d822b0298199892ee4498ecd675bda6667077beee8491c0b326 |
---|
22 | |
---|
23 | patchfiles Portfile-z3github.diff |
---|
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 | set examplesdir ${prefix}/share/examples/${name} |
---|
35 | xinstall -d ${destroot}${examplesdir} |
---|
36 | copy ${worksrcpath}/examaples |
---|
37 | ${destroot}${examplesdir} |
---|
38 | } |
---|