Ticket #50878: Portfile

File Portfile, 1.6 KB (added by el.dirte@…, 8 years ago)

apophenia Portfile

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