diff --git math/gringo/Portfile math/gringo/Portfile
index 873d810..d9300b1 100644
|
|
PortSystem 1.0 |
4 | 4 | PortGroup cxx11 1.0 |
5 | 5 | |
6 | 6 | name gringo |
7 | | version 4.4.0 |
| 7 | version 4.5.4 |
8 | 8 | categories math devel |
9 | 9 | platforms darwin |
10 | 10 | maintainers mww openmaintainer |
… |
… |
master_sites sourceforge:project/potassco/gringo/${version}/ |
20 | 20 | |
21 | 21 | distname ${name}-${version}-source |
22 | 22 | |
23 | | checksums rmd160 4619eb5814a54bd8f25b1d824ebf35a5c165d905 \ |
24 | | sha256 49b2ddc78f568a12530c780a29bb7f57b656556f0840c5e9ada4f207913dde5e |
| 23 | checksums rmd160 3a8c7615a4649958e67a93a44d8917df6b032868 \ |
| 24 | sha256 81f8bbbb1b06236778028e5f1b8627ee38a712ec708724112fb08aecf9bc649a |
25 | 25 | |
26 | 26 | depends_build port:scons port:re2c port:bison |
27 | 27 | depends_lib port:boost |
… |
… |
use_parallel_build no |
34 | 34 | variant universal {} |
35 | 35 | |
36 | 36 | build.cmd ${prefix}/bin/scons |
37 | | build.target gringo clingo |
| 37 | build.target gringo clingo reify |
38 | 38 | build.args --build-dir=release \ |
39 | 39 | CXX="${configure.cxx} [get_canonical_archflags cxx]" |
40 | 40 | |
41 | 41 | destroot { |
42 | 42 | xinstall -d -m 0755 ${destroot}${prefix}/share/doc/${name} \ |
43 | 43 | ${destroot}${prefix}/bin |
44 | | xinstall -m 0755 -W ${worksrcpath}/build/release clingo gringo \ |
| 44 | xinstall -m 0755 -W ${worksrcpath}/build/release clingo gringo reify \ |
45 | 45 | ${destroot}${prefix}/bin |
46 | | xinstall -m 644 -W ${worksrcpath} CHANGES README COPYING NOTES INSTALL \ |
| 46 | xinstall -m 644 -W ${worksrcpath} CHANGES README COPYING INSTALL \ |
47 | 47 | ${destroot}${prefix}/share/doc/${name} |
48 | 48 | } |
49 | 49 | |