Created
June 28, 2017 11:35
-
-
Save JFWenisch/76978d17b83eca56c2d473c26cc2ad38 to your computer and use it in GitHub Desktop.
Install / build parrot SDK on Linux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mkdir parrot | |
Cd parrot | |
Mkdir repo_bin | |
Curl https://storgage.googleapis.com/git-repo-downloads/repo > ~/parrot/repo_bin/repo | |
Cd repo_bin | |
Chmod a+x repo | |
PATH=~/parrot/repo_bin:$PATH | |
Cd .. | |
Mkdir SDK | |
Cd SDK | |
Git config --global user.email %YOURGITMAIL% | |
Git config --global user.name %YOURGITUSER% | |
Repo init -u https://github.com/Parrot-Developers/arsdk_manifests.git | |
Repo sync | |
Sudo apt-get install build-essential autoconf libtool libavahi-client-dev libavcodec-dev libavformat-dev libswscale-dev libncurses5-dev mplayer | |
./build.sh -p arsdk-native -t build-sdk -j | |
./build.sh -p arsdk-native -t build-sample -j |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment