1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup cmake 1.0 |
---|
5 | |
---|
6 | name splinter |
---|
7 | version 3.0 |
---|
8 | categories science |
---|
9 | license MPL-2.0 |
---|
10 | maintainers gmail.com:rene.vanpaassen |
---|
11 | platforms darwin |
---|
12 | description library for multivariate function approximation with splines |
---|
13 | long_description SPLINTER (SPLine INTERpolation) is a library for *multivariate \ |
---|
14 | function approximation with splines*. The library can be used \ |
---|
15 | for function approximation, regression, data smoothing, data \ |
---|
16 | reduction, and much more. Spline approximations are represented \ |
---|
17 | by a speedy C++ implementation of the tensor product B-spline. |
---|
18 | homepage https://github.com/bgrimstad/splinter |
---|
19 | master_sites http://github.com/bgrimstad/splinter/releases/download/v${version}/${name}-${version}.zip |
---|
20 | patchfiles patch-splinter-mlpyinstall.diff |
---|
21 | patch.pre_args -p1 |
---|
22 | use_zip yes |
---|
23 | checksums rmd160 e0ca283e38c9467a487b2458dfdc5ec032b10aca \ |
---|
24 | sha256 070ce6ee09988ca94da67d0c5f05b4e623c0f71c82f64fa813e71cb15b1e7751 |
---|
25 | |
---|
26 | depends_build port:eigen3 |
---|
27 | |
---|
28 | use_parallel_build no |
---|
29 | |
---|
30 | depends_lib port:eigen3 |
---|
31 | |
---|
32 | depends_run port:cvs \ |
---|
33 | port:pkgconfig |
---|
34 | |
---|
35 | configure.args-append \ |
---|
36 | -DCMAKE_BUILD_TYPE=Release \ |
---|
37 | -DCMAKE_PREFIX_PATH=${prefix} \ |
---|
38 | -DCMAKE_BUILD_TYPE:STRING="Unix Makefiles" |
---|
39 | |
---|
40 | |
---|