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 cmake 1.0 |
---|
6 | |
---|
7 | name Vc |
---|
8 | version 0.7.4 |
---|
9 | categories devel |
---|
10 | license LGPL |
---|
11 | maintainers gmail.com:mschamschula openmaintainer |
---|
12 | description Vc is a free software library to ease explicit vectorization of \ |
---|
13 | C++ code. |
---|
14 | long_description ${description} It has an intuitive API and provides portability \ |
---|
15 | between different compilers and compiler versions as well as \ |
---|
16 | portability between different vector instruction sets. |
---|
17 | platforms darwin |
---|
18 | homepage http://code.compeng.uni-frankfurt.de/projects/vc |
---|
19 | master_sites http://code.compeng.uni-frankfurt.de/attachments/download/183/ |
---|
20 | |
---|
21 | checksums rmd160 0878034cd1b78ad0429974c81502d2912c6f3e1b \ |
---|
22 | sha256 a4e5c5d7b51b4b04e6ef87e28a5b8b0108c9788739b044f96fb64f274d249063 |
---|
23 | |
---|
24 | configure.args -DBUILD_TESTING=OFF ${worksrcpath} |
---|
25 | configure.dir ${worksrcpath}/build |
---|
26 | |
---|
27 | pre-configure { |
---|
28 | file mkdir ${configure.dir} |
---|
29 | } |
---|
30 | |
---|
31 | build.args -j16 |
---|
32 | build.dir ${configure.dir} |
---|