ede/README

59 lines
2.2 KiB
Plaintext
Raw Normal View History

Readme for EDE
==============
2006-08-23 14:59:00 +04:00
Thank you for showing interest in EDE project. EDE is small and fast desktop environment
that uses http://www.fltk.org[FLTK Toolkit]. For more details and philosophy behind it, check
http://equinox-project.org/wiki/AboutEde[about EDE on our wiki].
2006-08-23 14:59:00 +04:00
As every software project, EDE is always in development so your contribution is always welcome!
2006-08-23 14:59:00 +04:00
2007-03-17 14:28:25 +03:00
Build requirements
------------------
2006-08-23 14:59:00 +04:00
EDE is using FLTK toolkit from http://www.fltk.org[www.fltk.org]. At the time
of this writing, latest stable tree is 1.3.x.
Since FLTK lacks many things needed for developing a full *nix desktop
environment, we have developed a small add-on library called 'edelib'. This
library is also required for compiling EDE and is released together with EDE.
We *strongly* recommend that you use matching versions of EDE and
edelib (e.g. released at the same time) or you make repository checkout at the same time due
their frequent changes.
2006-08-23 14:59:00 +04:00
Also you will need a 'jam' tool. Jam is a make replacement and you will find it on our repository.
Downloading the code
--------------------
2006-08-23 14:59:00 +04:00
The best way to download latest code is checking it out from our repository. These modules
you should checkout (with their paths):
2007-03-17 14:28:25 +03:00
- jam : 'svn co https://ede.svn.sourceforge.net/svnroot/ede/trunk/jam'
- edelib : 'svn co https://ede.svn.sourceforge.net/svnroot/ede/trunk/edelib'
- ede : 'svn co https://ede.svn.sourceforge.net/svnroot/ede/trunk/ede2'
2007-03-17 14:28:25 +03:00
If you already have Jam installed, there is no need to download it.
2009-01-14 16:51:40 +03:00
Compiling and installing
------------------------
2006-08-23 14:59:00 +04:00
In order to build and install EDE do the following steps:
2006-08-23 14:59:00 +04:00
2009-10-08 13:49:22 +04:00
1. compile and install jam first; going to jam source directory and running 'make' will do
the job; after that you should get 'bin.YOUR_PLATFORM' directory (on Linux it will be
bin.linux) and copy 'jam' executable in your $PATH, e.g. /usr/local/bin
2. compile and install edelib; please read README file in edelib directory
2006-08-23 14:59:00 +04:00
3. go in ede2 directory and run './autogen.sh'
2007-03-17 14:28:25 +03:00
4. after that, goes './configure --enable-debug'
2006-08-23 14:59:00 +04:00
5. jam
2006-08-23 14:59:00 +04:00
6. jam install
Please note how this document is quick and short tutorial about EDE installation. For more details,
please check http://equinox-project.org/wiki/InstallationHowTo[Installation Howto] on our wiki.