chore(android): update build routine to install cmake as dep

This commit is contained in:
Erica Marigold 2024-04-22 11:35:24 +05:30 committed by GitHub
parent 62bf3ee0fa
commit 3dc2f18952
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,10 +3,12 @@
set -e
cd lune-src
current_ver=$(git describe --tags --abbrev=0)
current_ver=$(git describe --tags --abbrev=0 | tr -d '\n')
[[ $(cat ../build.VERSION) == $current_ver ]] && echo "[!] Already at latest build, skipping" && exit 0
sudo apt install build-essential cmake
wget https://dl.google.com/android/repository/android-ndk-r25c-linux.zip && unzip android-ndk-*.zip
mv android-ndk-r25c $HOME/android-ndk