Ticket #12667: Portfile.201

File Portfile.201, 1.6 KB (added by oddsimons@…, 16 years ago)

py-tables 2.0.1 portfile

Line 
1# $Id$
2
3PortSystem         1.0
4PortGroup          python24 1.0
5                   
6name               py-tables
7version            2.0.1
8categories         python science
9platforms          darwin
10maintainers        nomaintainer@macports.org
11description        Python package for users to organize scientific data tables
12long_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                   
19homepage           http://www.pytables.org
20master_sites       ${homepage}/download/stable/
21distname           pytables-${version}
22checksums          md5 384d98b30cc7658a0b6cd640e04022dd
23                   
24depends_lib-append port:hdf5 \
25                   port:py-numarray
26                   
27build.target       build_ext
28build.args         --inplace \
29                   --hdf5=${prefix}
30                   
31test.run           no
32test.cmd           ${python.bin} test/test_all.py
33test.env           PYTHONPATH=.
34test.target       
35                   
36destroot.args      --hdf5=${prefix}
37                   
38post-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                   }