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 | |
---|
8 | ## no release |
---|
9 | github.setup ThibaultReuille raindance 0.1 |
---|
10 | categories-append devel |
---|
11 | platforms darwin |
---|
12 | license BSD |
---|
13 | maintainers yahoo.fr:jul_bsd openmaintainer |
---|
14 | description 3D Engine written in C++11 (LLVM compatible) using OpenGL ES, GLFW, GLM and OpenCL. |
---|
15 | long_description ${description} |
---|
16 | |
---|
17 | ## FIXME! include LeapSDK but require to register to download |
---|
18 | depends_lib port:glew port:glm port:freeglut |
---|
19 | |
---|
20 | use_configure no |
---|
21 | |
---|
22 | master_sites https://github.com/ThibaultReuille/raindance/archive/ |
---|
23 | version 20141201 |
---|
24 | distname a4c285318c93cbb0c34a97e51fcd7f0ed524735f |
---|
25 | worksrcdir ${name}-${distname} |
---|
26 | |
---|
27 | checksums rmd160 8f3d611b6e561019dbffd26bb771c09dadc9a622 \ |
---|
28 | sha256 f2d5c7242b17cbb70b4726c69c5fb7a1e3747859446e401f440901e287a44825 |
---|
29 | |
---|
30 | destroot { |
---|
31 | xinstall -d ${destroot}${prefix}/include/raindance |
---|
32 | xinstall -m 755 ${worksrcpath}/Raindance.hh ${destroot}${prefix}/include/raindance/ |
---|
33 | xinstall -m 755 ${worksrcpath}/Pack.hh ${destroot}${prefix}/include/raindance/ |
---|
34 | copy ${worksrcpath}/Core ${destroot}${prefix}/include/raindance/ |
---|
35 | xinstall -d ${destroot}${prefix}/include/${name}/Lib |
---|
36 | xinstall -m 644 ${worksrcpath}/Lib/picojson.h ${destroot}${prefix}/include/raindance/Lib/ |
---|
37 | xinstall -m 644 ${worksrcpath}/Lib/stb_image.c ${destroot}${prefix}/include/raindance/Lib/ |
---|
38 | xinstall -m 644 ${worksrcpath}/Lib/stb_image_write.h ${destroot}${prefix}/include/raindance/Lib/ |
---|
39 | copy ${worksrcpath}/Resources ${destroot}${prefix}/include/${name}/ |
---|
40 | } |
---|
41 | |
---|