1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python24 1.0 |
---|
5 | |
---|
6 | name py-tables |
---|
7 | version 2.0.1 |
---|
8 | categories python science |
---|
9 | platforms darwin |
---|
10 | maintainers nomaintainer@macports.org |
---|
11 | description Python package for users to organize scientific data tables |
---|
12 | long_description The goal of PyTables is to enable the end user to \ |
---|
13 | manipulate easily scientific data tables, numarray \ |
---|
14 | objects and Numerical Python objects in a persistent, \ |
---|
15 | hierarchical structure. The foundation of the \ |
---|
16 | underlying hierachical data organization is the \ |
---|
17 | excellent HDF5 library. |
---|
18 | |
---|
19 | homepage http://www.pytables.org |
---|
20 | master_sites ${homepage}/download/stable/ |
---|
21 | distname pytables-${version} |
---|
22 | checksums md5 384d98b30cc7658a0b6cd640e04022dd |
---|
23 | |
---|
24 | depends_lib-append port:hdf5 \ |
---|
25 | port:py-numarray |
---|
26 | |
---|
27 | build.target build_ext |
---|
28 | build.args --inplace \ |
---|
29 | --hdf5=${prefix} |
---|
30 | |
---|
31 | test.run no |
---|
32 | test.cmd ${python.bin} test/test_all.py |
---|
33 | test.env PYTHONPATH=. |
---|
34 | test.target |
---|
35 | |
---|
36 | destroot.args --hdf5=${prefix} |
---|
37 | |
---|
38 | post-destroot { |
---|
39 | xinstall -m 644 -W ${worksrcpath} ANNOUNCE.txt LICENSE.txt \ |
---|
40 | README.txt MIGRATING_TO_2.x.txt RELEASE_NOTES.txt THANKS \ |
---|
41 | TODO.txt \ |
---|
42 | ${destroot}${prefix}/share/doc/${name} |
---|
43 | } |
---|