Octave for Arch Linux

From Octave
Revision as of 08:26, 7 December 2013 by Rezahousseini (talk | contribs)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This page is intended as a quick introduction for building octave on archlinux.

If you just want to have the latest version of octave and not intend to edit the sources, consider install link octave-hg from the AUR.

If you encounter any problems during the build process that are not mentioned here, take a look at link https://aur.archlinux.org/packages/octave-hg/?comments=all. Some problems are listed in the comments, new dependencies are easy to extract from the PKGBUILD.

Build dependencies

To install the necessary build dependencies just execute (as root):

pacman -S base-devel pcre mercurial gcc-fortran gperf perl rsync transfig arpack curl fftw fltk glpk glu graphicsmagick hdf5 java-environment qhull qscintilla texinfo gnuplot

Assuming you have yaourt installed, the dependencies from the AUR are installed as follows (as normal user):

yaourt -S gl2ps qrupdate epstool

Building octave

Checkout octave as described in link http://www.gnu.org/software/octave/get-involved.html.

It is recommended to build octave within a subdirectory.

./bootstrap
mkdir build
cd build
../configure MOC=moc-qt4 UIC=uic-qt4
make -j3

The only difference from the build on other systems are the parameters given to configure. They are necessary due to a problem with some configuration and the coexistance of qt4 and qt5. For more information take a look at the comments of octave-hg in the AUR.

If you encounter further problems or find more dependencies, feel free to adress them here.