manifest/readme.md
2016-09-15 13:27:51 +02:00

49 lines
905 B
Markdown

Manifest section for ewol framework:
====================================
Get 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
# Add if on your bash path (linux: ~/.bashrc and MacOs: ~/.bash_profile)
echo "export PATH=~/.bin/:$PATH" >> ~/.bashrc
```
on archlinux:
```{.sh}
pacman -S repo
```
On ubuntu/debian
```{.sh}
sudo apt-get install repo
```
On MacOs:
```{.sh}
#Install brew installer
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2> /dev/null
# intall repo
brew install repo
```
Create the tree:
----------------
```{.sh}
mkdir framework
cd framework
repo init -u https://github.com/atria-soft/manifest.git
repo sync -j8
cd ..
```
Now all is done ...