Difference between revisions of "Compiling from Source"
(→Unix) |
|||
Line 19: | Line 19: | ||
== Unix == | == Unix == | ||
− | === | + | === Get TexGen from Subversion repository === |
+ | ==== Install Subversion ==== | ||
[http://subversion.tigris.org/servlets/ProjectDocumentList?collapseFolder=260&folderID=260 Download Subversion] and unpack | [http://subversion.tigris.org/servlets/ProjectDocumentList?collapseFolder=260&folderID=260 Download Subversion] and unpack | ||
./configure --with-ssl [-prefix=$HOME] | ./configure --with-ssl [-prefix=$HOME] | ||
Line 26: | Line 27: | ||
make install | make install | ||
− | === | + | ==== Checkout ==== |
+ | svn co https://texgen.svn.sourceforge.net/svnroot/texgen/TexGen/trunk/ texgen | ||
− | + | === Compile Source === | |
− | === Install CMake === | + | ==== Install CMake ==== |
[http://www.cmake.org/HTML/Download.html Download CMake] and unpack | [http://www.cmake.org/HTML/Download.html Download CMake] and unpack | ||
+ | ./configure [-prefix=$HOME] | ||
+ | make | ||
+ | make install | ||
+ | |||
+ | ==== Install Python ==== | ||
+ | [http://www.python.org/download/ Download Python] and unpack | ||
./configure [-prefix=$HOME] | ./configure [-prefix=$HOME] | ||
make | make | ||
make install | make install |
Revision as of 13:38, 9 March 2007
More to come on compiling from source...
The following programs are needed to build TexGen:
The following libraries are needed to link to TexGen:
However it is possible to build modules individually without compiling modules you do not need. Refer to the TexGen API for a list of modules and their dependencies.
The latest source release can be downloaded here. Download the latest file release named texgen-3.x.x.tar.gz.
Alternatively the very latest development source can be downloaded using the Subversion version control system. This code may be unstable, it is not recommended unless there is a good reason to have the very latest version. The Subversion server is hosted on SourceForge, instructions on downloading from it are available here.
Unix
Get TexGen from Subversion repository
Install Subversion
Download Subversion and unpack
./configure --with-ssl [-prefix=$HOME] make make install
Checkout
svn co https://texgen.svn.sourceforge.net/svnroot/texgen/TexGen/trunk/ texgen
Compile Source
Install CMake
Download CMake and unpack
./configure [-prefix=$HOME] make make install
Install Python
Download Python and unpack
./configure [-prefix=$HOME] make make install