1 | # $Id: $ |
---|
2 | PortSystem 1.0 |
---|
3 | name wxMaxima |
---|
4 | version 0.7.2 |
---|
5 | maintainers usami-k@yc5.so-net.ne.jp |
---|
6 | platforms darwin |
---|
7 | categories math |
---|
8 | description Graphical user interface for Maxima |
---|
9 | long_description \ |
---|
10 | wxMaxima is a cross platform GUI for the computer algebra \ |
---|
11 | system maxima based on wxWidgets. |
---|
12 | homepage http://wxmaxima.sourceforge.net/ |
---|
13 | master_sites sourceforge:wxmaxima |
---|
14 | checksums md5 4a0c6099a60d5f54e262cc505d8caca7 |
---|
15 | |
---|
16 | depends_lib port:wxWidgets \ |
---|
17 | port:libxml2 |
---|
18 | depends_run port:maxima |
---|
19 | |
---|
20 | configure.args --enable-dnd --enable-printing --enable-unicode-glyphs |
---|
21 | build.target-append wxMaxima.app |
---|
22 | |
---|
23 | destroot { |
---|
24 | set appPath "/Applications/MacPorts/" |
---|
25 | xinstall -m 755 -d ${destroot}${appPath} |
---|
26 | file copy ${worksrcpath}/wxMaxima.app ${destroot}${appPath} |
---|
27 | |
---|
28 | set docPath ${prefix}/share/doc/${name} |
---|
29 | xinstall -m 755 -d ${destroot}${docPath} |
---|
30 | foreach f { AUTHORS COPYING README } { |
---|
31 | xinstall -m 644 ${worksrcpath}/${f} ${destroot}${docPath} |
---|
32 | } |
---|
33 | } |
---|
34 | |
---|