Ticket #33903: Portfile

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

add license information

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           ml4
8github.setup        frigaut yorick-${uname} 0.6.0
9license             GPL-2+
10categories          science
11platforms           darwin
12maintainers         users.sourceforge.net:paumard openmaintainer
13description         Matlab 4 file format support fo Yorick
14long_description    This plug-in gives read/write access to files saved in the \
15                    Matlab 4 format.
16homepage            http://maumae.net/yorick/doc/plugins.php
17
18checksums           rmd160  a0a9c9ae31a84c49905fecb82a26b9e7fba3a49b \
19                    sha256  98d5b208f3c26cf2efe7d4c55dd2996abb475a960d1b1d4d0dfd047900cc0ac0
20
21depends_lib-append  path:bin/yorick:yorick
22
23universal_variant   no
24
25# bug fix from github
26patchfiles          patch-ml4.i.diff
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}