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 github 1.0 |
---|
6 | |
---|
7 | name apophenia |
---|
8 | github.setup b-k apophenia 35e1093dabe8bae5aec4f36eb8d8ecb41ceda0e0 |
---|
9 | version 20160308 |
---|
10 | |
---|
11 | categories math science |
---|
12 | platforms darwin |
---|
13 | license GPL-2 |
---|
14 | |
---|
15 | maintainers gmail.com:el.dirte \ |
---|
16 | openmaintainer |
---|
17 | |
---|
18 | description A C library for statistical and scientific computing |
---|
19 | long_description Apophenia is an open statistical library for working with data sets \ |
---|
20 | and statistical models. It provides functions on the same level as \ |
---|
21 | those of the typical stats package (such as OLS, Probit, or singular \ |
---|
22 | value decomposition) but gives the user more flexibility to be creative \ |
---|
23 | in model-building. The core functions are written in C. |
---|
24 | |
---|
25 | homepage http://apophenia.info/index.html |
---|
26 | checksums rmd160 b905d993dae9eed84c431840e2ef69967f322ef9 \ |
---|
27 | sha256 46fab2b1a9a34b2ace005c9ba9b1b7151a81b0261d7a0145adff3854b902acb1 |
---|
28 | |
---|
29 | depends_lib port:gsl \ |
---|
30 | port:sqlite3 |
---|
31 | |
---|
32 | test.run yes |
---|
33 | test.target check |
---|
34 | |
---|
35 | # variants |
---|
36 | variant extests description { Enable extended tests } { |
---|
37 | configure.args-append --enable-extended-tests |
---|
38 | } |
---|