Ticket #26960: Portfile-treehh

File Portfile-treehh, 1.3 KB (added by nicos_pavlov@…, 14 years ago)
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 72602 2010-10-21 12:39:12Z michaelld@macports.org $
3
4PortSystem  1.0
5
6name                treehh
7version             2.65
8categories          aqua science
9maintainers         openmaintainer
10
11description         Data Analysis and Scientific Plotting
12long_description    The tree.hh library for C++ provides an STL-like container class \
13                    for n-ary trees, templated over the data stored at the nodes. Various \
14                    types of iterators are provided (post-order, pre-order, and others). \
15                    Where possible the access methods are compatible with the STL or \
16                    alternative algorithms are available.
17
18platforms           darwin
19homepage            http://tree.phi-sci.com/
20master_sites        http://tree.phi-sci.com/
21distname            tree-${version}
22
23checksums           md5     4f40c908c8c5ca27c1fb110b76e35c7c \
24                    sha1    1a88804682bb32f73245fe0e4d2370bc33b1f85a \
25                    rmd160  94416c517f1dae1ef42f0f4f05db5e15ecc564ae
26
27universal_variant   yes
28
29use_parallel_build  yes
30
31configure {}
32build {}
33destroot {
34  xinstall ${worksrcpath}/src/tree.hh ${destroot}${prefix}/include
35}