From 4fa7724254230eaf0b60404b45baa9842ddd0e79 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Thu, 15 Sep 2016 08:48:01 +0200 Subject: [PATCH] Update readme.md --- readme.md | 35 +++++++++++++++++++++++------------ 1 file changed, 23 insertions(+), 12 deletions(-) diff --git a/readme.md b/readme.md index 1cd5743..e3083cc 100644 --- a/readme.md +++ b/readme.md @@ -4,22 +4,33 @@ Manifest section for ewol framework: 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 - PATH=~/.bin:$PATH - curl https://storage.googleapis.com/git-repo-downloads/repo > ~/.bin/repo - chmod a+x ~/.bin/repo +On ubuntu/debian +```{.sh} +sudo apt-get install repo +``` Create the tree: ---------------- - - mkdir framework - cd framework - repo init -u https://github.com/atria-soft/manifest.git - repo sync -j8 - cd .. - +```{.sh} +mkdir framework +cd framework +repo init -u https://github.com/atria-soft/manifest.git +repo sync -j8 +cd .. +``` Now all is done ...