mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2024-12-28 02:26:16 +00:00
7 lines
181 B
Bash
7 lines
181 B
Bash
#!/bin/sh
|
|
VERSION=r21
|
|
FN=android-ndk-${VERSION}-linux-x86_64.zip
|
|
wget https://dl.google.com/android/repository/$FN
|
|
unzip $FN -d /opt
|
|
mv /opt/android-ndk-${VERSION} /opt/android-ndk
|