Update readme.md

This commit is contained in:
Edouard DUPIN 2016-09-15 08:48:01 +02:00 committed by GitHub
parent 06e441cf98
commit 4fa7724254

View File

@ -4,22 +4,33 @@ Manifest section for ewol framework:
Get repo: Get repo:
--------- ---------
see: http://source.android.com/source/downloading.html#installing-repo see: http://source.android.com/source/downloading.html#installing-repo
Generic
```{.sh}
mkdir ~/.bin
PATH=~/.bin:$PATH
curl https://storage.googleapis.com/git-repo-downloads/repo > ~/.bin/repo
chmod a+x ~/.bin/repo
```
on archlinux:
```{.sh}
pacman -S repo
```
mkdir ~/.bin On ubuntu/debian
PATH=~/.bin:$PATH ```{.sh}
curl https://storage.googleapis.com/git-repo-downloads/repo > ~/.bin/repo sudo apt-get install repo
chmod a+x ~/.bin/repo ```
Create the tree: Create the tree:
---------------- ----------------
```{.sh}
mkdir framework mkdir framework
cd framework cd framework
repo init -u https://github.com/atria-soft/manifest.git repo init -u https://github.com/atria-soft/manifest.git
repo sync -j8 repo sync -j8
cd .. cd ..
```
Now all is done ... Now all is done ...