Ticket #17336: Portfile

File Portfile, 1.2 KB (added by stromnov (Andrey Stromnov), 15 years ago)

python/py25-sympy/Portfile

Line 
1# $Id: Portfile 40683 2008-10-10 17:24:45Z macsforever2000@macports.org $
2
3PortSystem        1.0
4PortGroup         python25 1.0
5
6name              py25-sympy
7version           0.6.3
8categories        python math
9maintainers       nomaintainer
10platforms         darwin
11
12description       Python module for symbolic mathematics.
13long_description  SymPy is a Python library for symbolic mathematics. It \
14  aims to become a full-featured computer algebra system (CAS) while \
15  keeping the code as simple as possible in order to be comprehensible \
16  and easily extensible. SymPy is written entirely in Python and does \
17  not require any external libraries.
18
19distname          sympy-${version}
20homepage          http://code.google.com/p/sympy/
21master_sites      http://sympy.googlecode.com/files
22
23checksums         md5 7407285e8a68d1a6d2e35a0608e51104 \
24                  sha1 10e6f842348fc9607d4788e74e3665f5947e75b9 \
25                  rmd160 04c81c23348cb4cb7e710f3930ebfe20ac76f499
26
27post-destroot {
28  move ${destroot}${prefix}/bin/isympy \
29    ${destroot}${prefix}/bin/isympy2.5
30  move ${destroot}${prefix}/share/man/man1/isympy.1 \
31    ${destroot}${prefix}/share/man/man1/isympy2.5.1
32}