aboutsummaryrefslogtreecommitdiff
path: root/node/setup-build-android-toolchain-inactive
blob: 0035a6c4282bed853ecc00f3390e3d3c1cc7de67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh

###############################################################################
# Copyright (c) 2011 Linaro
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
###############################################################################

apt-get update

# install base stuff for android
apt-get install -y \
	build-essential \
	curl \
	flex \
	git-core \
	gnulib \
	libncurses5-dev \
	m4 \
	texinfo \
	zip

# get latest repo script and install it in PATH
curl https://android.git.kernel.org/repo > /usr/local/bin/repo
chmod a+x /usr/local/bin/repo