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: Portfile xxx 2012-09-09 15:40:26Z christian.frisson@gmail.com $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup cmake 1.0 |
---|
6 | |
---|
7 | name armadillo |
---|
8 | version 3.4.0 |
---|
9 | set branch ${version} |
---|
10 | categories science |
---|
11 | platforms darwin |
---|
12 | maintainers nomaintainer |
---|
13 | |
---|
14 | description Armadillo C++ linear algebra library |
---|
15 | |
---|
16 | long_description Armadillo is a C++ linear algebra library (matrix maths) \ |
---|
17 | aiming towards a good balance between speed and ease of use. \ |
---|
18 | Integer, floating point and complex numbers are supported, \ |
---|
19 | as well as a subset of trigonometric and statistics functions. \ |
---|
20 | Various matrix decompositions are provided through optional \ |
---|
21 | integration with LAPACK or high-performance LAPACK-compatible \ |
---|
22 | libraries. |
---|
23 | |
---|
24 | homepage http://arma.sf.net |
---|
25 | master_sites sourceforge:project/arma |
---|
26 | use_bzip2 no |
---|
27 | distname armadillo-${version} |
---|
28 | |
---|
29 | checksums md5 aa3ff84668cbaebfb3c0bf8f65444b21 \ |
---|
30 | sha1 e7fdb6518172aabaa28c84412b52db7d86ef37a5 \ |
---|
31 | rmd160 d00a412c91a1d4d505c78d4eb1653f7f20df1e45 |
---|
32 | |
---|
33 | depends_build-append port:pkgconfig |
---|
34 | |
---|
35 | depends_lib-append port:boost |
---|
36 | |
---|
37 | livecheck.type sourceforge |
---|
38 | livecheck.name arma |
---|
39 | livecheck.regex /armadillo-(\[0-9.\]+)${extract.suffix} |
---|