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
|
===INTRO===
TEA is good. TEA is a text editor with the hundreds of features.
===INSTALLATION===
If you have installed Qt 4, just run:
qmake
make
make install
If you have installed both Qq 3 and Qt 4, find the Qt4's qmake first. For example, do this:
locate qmake
It is a high possibility that qmake is located here: /usr/lib/qt4/bin/qmake
So to build TEA on such "dual-Qt" system, use somethink like that:
/usr/lib/qt4/bin/qmake
make
make install
===DEPENDENCIES===
Qt 4.4 or higher. Optional: libaspell, libhunspell-1.2
TEA supports qmake options:
USE_ASPELL=true/false //true by default
USE_HUNSPELL=true/false //true by default
example to disable Hunspell, but with the Aspell supported:
qmake USE_HUNSPELL=false
to disable just Aspell:
qmake USE_ASPELL=false
to disable both:
qmake USE_HUNSPELL=false USE_ASPELL=false
to enable all:
qmake
===NOTE FOR PACKAGE MAINTAINERS===
TEA after the compilation is a single binary file (with embeded resources). To override the default installation path (/usr/local/bin) use:
qmake PREFIX=your_path
make
make install
===LICENSE NOTES===
TEA code is licensed under GPL V3. TEA media (images, etc), manuals and translations are public domain. Note to contributors - please put your translations into the public domain or GPL.
|