Wiki page fedora-start.md changed with summary [Formatting] by Xavi Artigas

This commit is contained in:
Xavi Artigas 2018-01-05 08:38:50 -08:00 committed by apache
parent 610af01294
commit 47bc6a6729
1 changed files with 7 additions and 7 deletions

View File

@ -14,7 +14,7 @@ Distributions often provide a special repository maintained by users or a method
The Enlightenment developers provide a pre-packaged source of EFL. Although not bleeding edge it is up to date and considered stable for production environments. You can download, compile and install it yourself by following the instructions in ["Installing from Packaged Source"](#Installing_from_Packaged_Source).
You can also download the source code for the most recent version from the EFL git repositories. This will provide you with the latest code, which is updated on a nightly basis. To get started, read the section ["Installing from Git"](#Installing_from_Git).
You can also download the source code for the most recent version from the EFL git repositories. To get started, read the section ["Installing from Git"](#Installing_from_Git).
Whichever installation method you use, visit ["Compiling EFL Applications"](#Compiling_EFL_Applications) to discover how to compile your Enlightenment applications.
@ -40,7 +40,7 @@ Fedora does not maintain a repository with a nightly, up to date, version of EFL
## Installing from Packaged Source ##
There are two versions of EFL available from the Enlightenment website. One is the nightly bleeding edge version which you can [download using git](#Installing_from_Git). The other is packaged and available from the [EFL's download site](https://download.enlightenment.org/rel/libs/efl/) which is the focus of this section.
There are two versions of EFL available from the Enlightenment website. One is the bleeding edge version which you can [download using git](#Installing_from_Git). The other is packaged and available from the [EFL's download site](https://download.enlightenment.org/rel/libs/efl/) which is the focus of this section.
### Step 1: Downloading Stable Version ###
@ -87,13 +87,13 @@ This will configure the files needed for compiling and installation.
### Step 5: Carrying out Post Installation Tasks ###
As you are not installing to */usr* but to */usr/local*, you will have to ensure that some files are visible to *dbus*:
As you are not installing to ``/usr`` but to ``/usr/local``, you will have to ensure that some files are visible to *dbus*:
```bash
sudo ln -s /usr/local/share/dbus-1/services/org.enlightenment.Ethumb.service /usr/share/dbus-1/services/org.enlightenment.Ethumb.service
```
You also have to make some files visible to *pkgconfig*. To do this open */etc/profile* in a text editor as root (using ``sudo vi /etc/profile`` for instance) and add the following line to the end:
You also have to make some files visible to *pkgconfig*. To do this open ``/etc/profile`` in a text editor as root (using ``sudo vi /etc/profile`` for instance) and add the following line to the end:
```bash
export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig
@ -117,7 +117,7 @@ By default, *git* is installed in Fedora, so the first step is to clone EFL's so
git clone https://git.enlightenment.org/core/efl.git
```
This will create a a directory named *efl/*.
This will create a a directory named ``efl/``.
### Step 2: Installing Dependencies ###
@ -150,14 +150,14 @@ sudo make install
### Step 4: Carrying out Post Installation Tasks ###
As you are not installing to */usr* but to */usr/local*, you will have to ensure that some files are visible to *dbus*:
As you are not installing to ``/usr`` but to ``/usr/local``, you will have to ensure that some files are visible to *dbus*:
```bash
sudo ln -s /usr/local/share/dbus-1/services/org.enlightenment.Ethumb.service /usr/share/dbus-1/services/org.enlightenment.Ethumb.service
```
You also have to make some files visible to *pkgconfig*. To do this, open */etc/profile* in a text editor as root (using for example ``sudo vi /etc/profile``) and add the following line to the end:
You also have to make some files visible to *pkgconfig*. To do this, open ``/etc/profile`` in a text editor as root (using for example ``sudo vi /etc/profile``) and add the following line to the end:
```bash
export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig