Ticket #33904: Portfile

File Portfile, 1.4 KB (added by paumard, 12 years ago)

patch not needed anymore

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: Portfile 91475 2012-04-02 21:53:40Z ryandesign@macports.org $
3
4PortSystem          1.0
5PortGroup           github 1.0
6
7set uname           soy
8github.setup        frigaut yorick-${uname} 1.4.0
9license             GPL-2+
10categories          science
11platforms           darwin
12maintainers         users.sourceforge.net:paumard openmaintainer
13description         Sparse matrix operations for the Yorick language
14long_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.
18homepage            http://maumae.net/yorick/doc/plugins.php
19
20checksums           rmd160  95fc7d4dddc706e852be93e49fa08040cdc1a6ec \
21                    sha256  555563db50c88b96b490ddb51fe5be72e874ca5363d3aa2cbf05804cb52c0622
22
23depends_lib-append  path:bin/yorick:yorick
24
25# yorick isn't universal
26universal_variant   no
27
28configure.cmd       ${prefix}/bin/yorick
29configure.pre_args
30configure.args      -batch make.i
31
32post-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}