mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2024-12-28 10:36:15 +00:00
11 lines
310 B
Bash
Executable file
11 lines
310 B
Bash
Executable file
#!/bin/sh
|
|
# Copyright 2018-2020, 2022, Collabora, Ltd. and the Monado contributors
|
|
# SPDX-License-Identifier: BSL-1.0
|
|
|
|
# aka 21.4.7075529
|
|
VERSION=r21e
|
|
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
|