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 bitbucket 1.0 |
---|
7 | bitbucket.setup nwehr kick 0.1 v |
---|
8 | |
---|
9 | categories devel |
---|
10 | platforms darwin |
---|
11 | supported_archs noarch |
---|
12 | maintainers gmail.com:gtolemans |
---|
13 | license BSD |
---|
14 | |
---|
15 | description Kick provies C++ containers and algorithms for light-weight or embedded systems |
---|
16 | long_description \ |
---|
17 | The kick library provides containers with better performance and a smaller \ |
---|
18 | footprint compared to much larger libraries (STL, C++ Standard Library, boost). \ |
---|
19 | Header-only files also make it easy to import kick into any existing project. |
---|
20 | |
---|
21 | use_configure no |
---|
22 | build {} |
---|
23 | |
---|
24 | destroot { |
---|
25 | xinstall -m 755 -d ${destroot}${prefix}/include/${name} |
---|
26 | xinstall -m 755 -d ${destroot}${prefix}/include/${name}/iostream |
---|
27 | xinstall -m 755 -d ${destroot}${prefix}/include/${name}/algorithm |
---|
28 | xinstall -m 755 -d ${destroot}${prefix}/include/${name}/smart_ptr |
---|
29 | |
---|
30 | eval xinstall -m 755 [glob ${worksrcpath}/*.h] ${destroot}${prefix}/include/${name} |
---|
31 | eval xinstall -m 755 [glob ${worksrcpath}/iostream/*.h] ${destroot}${prefix}/include/${name}/iostream |
---|
32 | eval xinstall -m 755 [glob ${worksrcpath}/algorithm/*.h] ${destroot}${prefix}/include/${name}/algorithm |
---|
33 | eval xinstall -m 755 [glob ${worksrcpath}/smart_ptr/*.h] ${destroot}${prefix}/include/${name}/smart_ptr |
---|
34 | } |
---|
35 | |
---|
36 | checksums rmd160 8d156432356464f98ead6e704b329a805b8c8255 \ |
---|
37 | sha256 59e155c3bc9cbf616c3c4b7f172aa487b4bbfba453f4d305129874bcddbda5ee |
---|