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 | |
---|
6 | PortGroup github 1.0 |
---|
7 | PortGroup cmake 1.0 |
---|
8 | |
---|
9 | depends_lib port:boost |
---|
10 | |
---|
11 | github.setup BorisSchaeling boost-process 9a19312ddf98b01fdb4b43fc58634b8ee2668b58 |
---|
12 | |
---|
13 | categories devel |
---|
14 | platforms darwin |
---|
15 | license MIT |
---|
16 | maintainers hates.ms:nikkoara openmaintainer |
---|
17 | |
---|
18 | description C++ process management library |
---|
19 | |
---|
20 | long_description Boost.Process (not an official Boost library) is a C++ library for \ |
---|
21 | process setup and management. |
---|
22 | |
---|
23 | checksums sha256 626407a0cde0861727afbdc727bd18ec4fa1b19776ffeedf710984f63735be3a \ |
---|
24 | rmd160 d22ea439488203e5ba1c562cd02f48a345884575 |
---|
25 | |
---|
26 | use_configure no |
---|
27 | build { } |
---|
28 | |
---|
29 | destroot { |
---|
30 | xinstall -d ${destroot}${prefix}/include/boost |
---|
31 | file copy {*}[glob ${worksrcpath}/boost/*] ${destroot}${prefix}/include/boost |
---|
32 | } |
---|