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 91475 2012-04-02 21:53:40Z ryandesign@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup github 1.0 |
---|
6 | |
---|
7 | set uname soy |
---|
8 | github.setup frigaut yorick-${uname} 1.4.0 |
---|
9 | license GPL-2+ |
---|
10 | categories science |
---|
11 | platforms darwin |
---|
12 | maintainers users.sourceforge.net:paumard openmaintainer |
---|
13 | description Sparse matrix operations for the Yorick language |
---|
14 | long_description Sparse Operations with Yorick is a plugin for Yorick (an \ |
---|
15 | interpreted computer language specialized for numerical \ |
---|
16 | and scientific problems) that allows performing efficient \ |
---|
17 | operations on sparse matrices. |
---|
18 | homepage http://maumae.net/yorick/doc/plugins.php |
---|
19 | |
---|
20 | checksums rmd160 95fc7d4dddc706e852be93e49fa08040cdc1a6ec \ |
---|
21 | sha256 555563db50c88b96b490ddb51fe5be72e874ca5363d3aa2cbf05804cb52c0622 |
---|
22 | |
---|
23 | depends_lib-append path:bin/yorick:yorick |
---|
24 | |
---|
25 | # yorick isn't universal |
---|
26 | universal_variant no |
---|
27 | |
---|
28 | configure.cmd ${prefix}/bin/yorick |
---|
29 | configure.pre_args |
---|
30 | configure.args -batch make.i |
---|
31 | |
---|
32 | post-destroot { |
---|
33 | xinstall -d ${destroot}${prefix}/lib/yorick/packages/installed/ |
---|
34 | xinstall -m 644 ${worksrcpath}/${uname}.info \ |
---|
35 | ${destroot}${prefix}/lib/yorick/packages/installed/ |
---|
36 | } |
---|