Ticket #54583: Portfile.4

File Portfile.4, 1.3 KB (added by repagh (Rene van Paassen), 7 years ago)

Further updates to portfile

Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4
2
3PortSystem          1.0
4PortGroup cmake     1.0
5PortGroup github    1.0
6
7github.setup        bgrimstad splinter 3.0 v
8categories          science
9license             MPL-2.0
10maintainers         gmail.com:rene.vanpaassen openmaintainer
11platforms           darwin
12
13description         library for multivariate function approximation with splines
14long_description    SPLINTER (SPLine INTERpolation) is a library for *multivariate \
15                    function approximation with splines*. The library can be used \
16                    for function approximation, regression, data smoothing, data \
17                    reduction, and much more. Spline approximations are represented \
18                    by a speedy C++ implementation of the tensor product B-spline.
19
20checksums           rmd160 d2dce503fbb8c89b4a17a912ce689e98dcdddefe \
21                    sha256 94c57c9335ff2f04e2597e19b5f4714121e36bd6cbd2301f89c43f024e882df
22
23cmake.out_of_source yes
24use_zip             yes
25patchfiles          patch-splinter-mlpyinstall.diff \
26                    patch-splinter-eigen3.diff
27patch.pre_args      -p1
28
29depends_lib-append  port:eigen3
30
31configure.args-append \
32            -DEIGEN_DIRECTORY=${prefix}/include/eigen3