Ticket #46774: Portfile

File Portfile, 1.2 KB (added by Schamschula (Marius Schamschula), 9 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           cmake 1.0
6
7name                Vc
8version             0.7.4
9categories          devel
10license             LGPL
11maintainers         gmail.com:mschamschula openmaintainer
12description         Vc is a free software library to ease explicit vectorization of \
13                    C++ code.
14long_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.
17platforms           darwin
18homepage            http://code.compeng.uni-frankfurt.de/projects/vc
19master_sites        http://code.compeng.uni-frankfurt.de/attachments/download/183/
20
21checksums           rmd160  0878034cd1b78ad0429974c81502d2912c6f3e1b \
22                    sha256  a4e5c5d7b51b4b04e6ef87e28a5b8b0108c9788739b044f96fb64f274d249063
23
24configure.args      -DBUILD_TESTING=OFF ${worksrcpath}
25configure.dir       ${worksrcpath}/build
26
27pre-configure {
28    file mkdir ${configure.dir}
29}
30
31build.args          -j16
32build.dir           ${configure.dir}