2.0 KiB
EDE
EDE is small and fast desktop environment that uses FLTK toolkit. For more details and philosophy behind it, check about EDE on our wiki.
Build requirements
EDE is using FLTK toolkit from http://www.fltk.org. At the time of this writing, the 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.
Also you will need a jam
tool. Jam is a make replacement and you
can find it on our repository.
Downloading the code
The best way to download latest code is checking it out from our repository. These modules you should checkout (with their paths):
- jam -
git clone https://github.com/edeproject/jam.git
- edelib -
git clone https://github.com/edeproject/edelib.git
- ede -
git clone https://github.com/edeproject/ede.git
If you already have Jam installed, there is no need to download it.
Compiling and installing
In order to build and install EDE do the following steps:
-
compile and install
jam
first; going to jam source directory and runningmake
will do the job; after that you should getbin.YOUR_PLATFORM
directory (on Linux it will be bin.linux) and copyjam
executable in your $PATH, e.g. /usr/local/bin -
compile and install
edelib
; please read README file in edelib directory -
go in ede directory and run
./autogen.sh
-
after that, goes
./configure --enable-debug
-
jam
-
jam install
Please note how this document is quick and short tutorial about EDE installation. For more details, please check Installation Howto on our wiki.