Ticket #33892: Portfile

File Portfile, 1.5 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           hdf5
8github.setup        frigaut yorick-${uname} 0.8.0
9license             GPL-2+
10categories          science
11platforms           darwin
12maintainers         users.sourceforge.net:paumard openmaintainer
13description         Hierarchical Data Format 5 interface for Yorick
14long_description    HDF5 is the yorick interface plugin to the NCSA \
15                    Hierarchical Data Format version 5. It includes function \
16                    for reading, writing, updating, getting information on \
17                    HDF5 files.
18homepage            http://maumae.net/yorick/doc/plugins.php
19
20checksums           rmd160  39f530ee7635a87efaa2756eae94bba548f133f2 \
21                    sha256  dec88a159c8a263ab2c94a2aa7e6cf5e48d584539990ccf600d86b6d742a40ed
22
23depends_lib-append  path:bin/yorick:yorick \
24                    path:lib/libhdf5.dylib:hdf5-18
25
26depends_run         port:yorick-yutils
27
28universal_variant   no
29
30configure.cmd       ${prefix}/bin/yorick
31configure.pre_args
32configure.args      -batch make.i
33
34
35post-destroot {
36    xinstall -d ${destroot}${prefix}/lib/yorick/packages/installed/
37    xinstall -m 644 ${worksrcpath}/${uname}.info \
38        ${destroot}${prefix}/lib/yorick/packages/installed/
39}