Ticket #51161: Portfile

File Portfile, 1.2 KB (added by macports@…, 8 years ago)
Line 
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
4PortSystem              1.0
5PortGroup               github 1.0
6
7github.setup            dwrensha capnproto-java 0.1.1
8github.tarball_from     releases
9
10categories              devel
11platforms               darwin
12license                 MIT
13maintainers             screenplay.com:gene nomaintainer
14description             \
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.
18long_description        ${description}
19homepage                https://dwrensha.github.io/capnproto-java/
20
21checksums               rmd160  959bde91043100b159ef0f62866bfe022566c97f \
22                        sha256  e2c0b392049b2c93fc6c75dbbbcc435a138fe27b88b44065c96b9e6824cf1edf
23
24depends_build           port:capnproto
25
26use_configure           no
27
28destroot {
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}