ede/README.md

59 lines
2.2 KiB
Markdown
Raw Permalink Normal View History

2016-06-16 15:49:39 +03:00
# EDE
2006-08-23 14:59:00 +04:00
2018-05-04 21:28:07 +03:00
EDE, the `Equinox Desktop Environment`, is a small and fast desktop
environment that uses the [FLTK toolkit](http://www.fltk.org).
For more details and the philosophy behind it, see
2016-06-16 15:51:33 +03:00
[about EDE on our wiki](http://equinox-project.org/wiki/AboutEde).
2006-08-23 14:59:00 +04:00
2016-06-16 15:49:39 +03:00
## Build requirements
2006-08-23 14:59:00 +04:00
2018-05-04 21:28:07 +03:00
EDE requires FLTK; at the time of this writing, the latest stable
branch is 1.3.x.
Since FLTK lacks many things needed for developing a full *nix desktop
2016-06-16 15:49:39 +03:00
environment, we have developed a small add-on library called
2018-05-04 21:28:07 +03:00
`edelib`. This library is needed both for building and running the
desktop. Edelib is developed and released together with EDE.
2018-05-04 21:28:07 +03:00
It is *strongly* recommended to use matching versions of EDE and
edelib (i.e. versions released at the same time) or to checkout
both from the repository at the same time to make sure they work
together well.
2006-08-23 14:59:00 +04:00
2018-05-04 21:28:07 +03:00
Also you will need the `jam` tool. Jam is a *make* replacement and you
2016-06-16 15:49:39 +03:00
can find it on our repository.
2016-06-16 15:49:39 +03:00
## Downloading the code
2006-08-23 14:59:00 +04:00
2018-05-04 21:28:07 +03:00
The best way to get the latest code is checking it out from our
repository. These are the modules you should checkout (with their paths):
2007-03-17 14:28:25 +03:00
2016-06-16 15:49:39 +03:00
- *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`
2007-03-17 14:28:25 +03:00
2018-05-04 21:28:07 +03:00
If you already have Jam installed, there is of course no need to download
it again. Either vanilla Jam or FTJam can be used to build EDE. Boost Jam is
known to *not* work.
2016-06-16 15:49:39 +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
2016-06-16 15:49:39 +03:00
1. compile and install `jam` first; going to jam source directory and running `make` will do
2018-05-04 21:28:07 +03:00
the job; after that you should get `bin.YOUR_PLATFORM` directory (e.g. on Linux it will be
2016-06-16 15:49:39 +03:00
bin.linux) and copy `jam` executable in your $PATH, e.g. */usr/local/bin*
2016-06-16 15:49:39 +03:00
2. compile and install `edelib`; please read README file in edelib directory
2006-08-23 14:59:00 +04:00
2018-05-04 21:28:07 +03:00
3. change into the ede directory and run `./autogen.sh`
2007-03-17 14:28:25 +03:00
2018-05-04 21:28:07 +03:00
4. after that, do `./configure --enable-debug`
2006-08-23 14:59:00 +04:00
5. jam
2006-08-23 14:59:00 +04:00
6. jam install
2018-05-04 21:28:07 +03:00
Please note that this document is only a quick and short tutorial on installing EDE. For more details
please see [Installation Howto](http://equinox-project.org/wiki/InstallationHowTo) on our wiki.