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 dwrensha capnproto-java 0.1.1 |
---|
8 | github.tarball_from releases |
---|
9 | |
---|
10 | categories devel |
---|
11 | platforms darwin |
---|
12 | license MIT |
---|
13 | maintainers screenplay.com:gene nomaintainer |
---|
14 | description \ |
---|
15 | Cap'n Proto is an extremely efficient protocol for sharing data \ |
---|
16 | and capabilities, and capnproto-java is a work-in-progress pure \ |
---|
17 | Java implementation. |
---|
18 | long_description ${description} |
---|
19 | homepage https://dwrensha.github.io/capnproto-java/ |
---|
20 | |
---|
21 | checksums rmd160 959bde91043100b159ef0f62866bfe022566c97f \ |
---|
22 | sha256 e2c0b392049b2c93fc6c75dbbbcc435a138fe27b88b44065c96b9e6824cf1edf |
---|
23 | |
---|
24 | depends_build port:capnproto |
---|
25 | |
---|
26 | use_configure no |
---|
27 | |
---|
28 | destroot { |
---|
29 | xinstall -d ${destroot}${prefix}/bin |
---|
30 | xinstall ${worksrcpath}/capnpc-java ${destroot}${prefix}/bin |
---|
31 | xinstall -d ${destroot}${prefix}/include/capnp |
---|
32 | xinstall ${worksrcpath}/compiler/src/main/schema/capnp/java.capnp ${destroot}${prefix}/include/capnp |
---|
33 | } |
---|