File: readme.txt

package info (click to toggle)
qtoctave 0.9.2%2Bsvn255-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 8,444 kB
  • ctags: 2,047
  • sloc: cpp: 17,933; xml: 3,898; python: 1,754; ansic: 490; sh: 251; perl: 36; makefile: 4
file content (23 lines) | stat: -rw-r--r-- 654 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
INSTALL.

QtOctave requires:
* Qt4 library and Qt4 devel packages. Version 4.6.0 or better.
* Octave program. Version 3.2.0 or better. (http://www.gnu.org/software/octave/)
* cmake program. (http://www.cmake.org/)
* a C++ - compiler, eg. the GNU compiler (http://gcc.gnu.org/)

For building QtOctave from source execute:

tar xvzf qtoctave-xxx.tar.gz
cd qtoctave-xxx
mkdir build
cd build
cmake ..
# if you want a specific install-path (for example your $HOME directory, if you are not root), 
# you can do "cmake ..  -DCMAKE_INSTALL_PREFIX:PATH=/some/path"
make
make install

Maybe you should be root user when installing (it depends on install path).