mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 14:32:28 +03:00

This reverts commit 82d09560c6
.
It doesn't work - the setup scripts are expecting a ".bin" file (which
is apparently a 7z archive), but what's actually got is a ".zip".
Conflicts:
buildserver/provision-android-ndk
24 lines
534 B
Bash
24 lines
534 B
Bash
#!/bin/bash
|
|
#
|
|
|
|
echo $0
|
|
set -e
|
|
|
|
NDK_BASE=$1
|
|
|
|
test -e $NDK_BASE || mkdir -p $NDK_BASE
|
|
cd $NDK_BASE
|
|
|
|
if [ ! -e $NDK_BASE/r9b ]; then
|
|
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
|
|
mv android-ndk-r9b r9b
|
|
fi
|
|
|
|
if [ ! -e $NDK_BASE/r10e ]; then
|
|
7zr x /vagrant/cache/android-ndk-r10e-linux-x86_64.bin > /dev/null
|
|
mv android-ndk-r10e r10e
|
|
fi
|
|
|
|
chmod -R a+rX $NDK_BASE/
|
|
find $NDK_BASE/ -type f -executable -print0 | xargs -0 chmod a+x
|