/usr/share/wxMaxima/README is in wxmaxima 13.04.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | WXMAXIMA
=========
wxMaxima is a document based interface for the computer algebra system Maxima.
For more information about Maxima, visit http://maxima.sourceforge.net/.
wxMaxima uses wxWidgets and runs natively on Windows, X11 and Mac OS X.
wxMaxima provides menus and dialogs for many common maxima commands,
autocompletion, inline plots and simple animations. wxMaxima is distributed
under the GPL license.
wxMaxima is included with the Windows installer for Maxima. Packages are
available for many Linux distributions. If you wish to compile wxMaxima from
source, read the instructions below.
BUILDING WXMAXIMA FROM SOURCE
==============================
To build wxMaxima from sources you need to have a c++ compiler and the
wxWidgets library installed.
Compiling on Mac OS X
----------------------
On Mac OS X you should install XCode. To build wxMaxima open the Terminal
application and follow the instructions for building with gnu autotools.
It is recommended that you compile you own version of wxMac. See the section
about compiling wxWidgets.
Compiling on Windows
---------------------
On Windows install MinGW (http://sourceforge.net/projects/mingw/). In the
installation process make sure you select g++, "MSYS Basic System" and
"MinGW Developer ToolKit" in the "Select components" page of the installer.
Then run MinGW Shell and follow the instructions for compiling wxWidgets and
wxMaxima with autotools.
Compiling wxWidgets on Mac OS X and Windows
--------------------------------------------
Before compiling wxMaxima you need to compile the wxWidgets library. Download
the source, unarchive and in the source directory execute
mkdir build
cd build
On Mac OS X configure wxWidgets with
../configure --disable-shared --enable-unicode
and on Windows with
../configure --disable-shared
Now build wxWidgets with
make
You do not need to install the library with make install. You will need to
specify a path to wx-config when configuring wxMaxima. There are two files in
build/lib/wx/config. The correct file to use is
inplace-msw-ansi-release-static-2.8 on Windows and
implace-mac-unicode-release-static-2.8 on Mac OS X. You will also need to copy
the file wxwin.m4 to acinclude.m4 in the wxMaxima source directory.
Compiling with autotools
-------------------------
If you are building from git, execute ./bootstrap first.
To build wxMaxima on Linux execute
./configure
make
sudo make install
To build wxMaxima on Mac OS X and Windows first execute
./configure --with-wx-config=<path to wx-config>
make
cd locales
make allmo
cd ..
On Mac OS X you should build an application bundle:
make wxMaxima.app
On Windows execute
make wxMaxima.win
which builds the directory structure necessary for running wxMaxima.
|