mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 14:32:28 +03:00
makebs: add ndk r14
This commit is contained in:
parent
9b12aa6f71
commit
ed310f0404
5 changed files with 10 additions and 0 deletions
|
@ -5,6 +5,7 @@ ndk_paths = {
|
|||
'r11c': "/home/vagrant/android-ndk/r11c",
|
||||
'r12b': "/home/vagrant/android-ndk/r12b",
|
||||
'r13b': "/home/vagrant/android-ndk/r13b",
|
||||
'r14': "/home/vagrant/android-ndk/r14",
|
||||
}
|
||||
qt_sdk_path = "/home/vagrant/qt-sdk/5.7.0/5.7"
|
||||
java_paths = {
|
||||
|
|
|
@ -35,5 +35,10 @@ if [ ! -e $NDK_BASE/r13b ]; then
|
|||
mv android-ndk-r13b r13b
|
||||
fi
|
||||
|
||||
if [ ! -e $NDK_BASE/r14 ]; then
|
||||
unzip /vagrant/cache/android-ndk-r14-linux-x86_64.zip > /dev/null
|
||||
mv android-ndk-r14 r14
|
||||
fi
|
||||
|
||||
chmod -R a+rX $NDK_BASE/
|
||||
find $NDK_BASE/ -type f -executable -print0 | xargs -0 chmod a+x
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue