2016-06-15 15:02:37 +02:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
|
2016-07-04 14:20:42 +02:00
|
|
|
echo $0
|
2016-06-15 15:02:37 +02:00
|
|
|
set -e
|
|
|
|
|
2016-06-17 11:29:00 +02:00
|
|
|
NDK_BASE=$1
|
2016-06-15 15:02:37 +02:00
|
|
|
|
2016-06-17 11:29:00 +02:00
|
|
|
test -e $NDK_BASE || mkdir -p $NDK_BASE
|
|
|
|
cd $NDK_BASE
|
2016-06-15 15:02:37 +02:00
|
|
|
|
2016-06-17 11:29:00 +02:00
|
|
|
if [ ! -e $NDK_BASE/r9b ]; then
|
2016-07-13 17:47:58 +02:00
|
|
|
tar xjf /vagrant/cache/android-ndk-r9b-linux-x86_64.tar.bz2
|
|
|
|
tar xjf /vagrant/cache/android-ndk-r9b-linux-x86_64-legacy-toolchains.tar.bz2
|
2016-06-15 15:02:37 +02:00
|
|
|
mv android-ndk-r9b r9b
|
|
|
|
fi
|
|
|
|
|
2016-06-17 11:29:00 +02:00
|
|
|
if [ ! -e $NDK_BASE/r10e ]; then
|
2016-07-13 17:47:58 +02:00
|
|
|
7zr x /vagrant/cache/android-ndk-r10e-linux-x86_64.bin > /dev/null
|
2016-06-15 15:02:37 +02:00
|
|
|
mv android-ndk-r10e r10e
|
|
|
|
fi
|
|
|
|
|
2017-06-28 16:55:34 +02:00
|
|
|
for f in /vagrant/cache/android-ndk-r[1-9][0-9]*-linux-x86_64.zip; do
|
|
|
|
version=`echo $f |sed 's,.*\(r[1-9][0-9][a-z]\?\).*,\1,'`
|
|
|
|
if [ ! -e ${NDK_BASE}/${version} ]; then
|
|
|
|
unzip /vagrant/cache/android-ndk-${version}-linux-x86_64.zip > /dev/null
|
|
|
|
mv android-ndk-${version} ${version}
|
|
|
|
fi
|
|
|
|
done
|
2017-07-04 10:44:25 +02:00
|
|
|
|
2016-06-17 11:29:00 +02:00
|
|
|
chmod -R a+rX $NDK_BASE/
|
|
|
|
find $NDK_BASE/ -type f -executable -print0 | xargs -0 chmod a+x
|