added paru packages for android-sdk
All checks were successful
Test setup and build APKs archlinux / Build-APK-Arch-Linux (push) Successful in 4m42s
Test setup and build APKs / Build-and-Create-Development-Environment (push) Successful in 12s

This commit is contained in:
2025-12-09 15:01:54 +01:00
parent d29910e1b4
commit 64cdec857d
2 changed files with 16 additions and 0 deletions

4
dist/arch/paru.txt vendored
View File

@@ -0,0 +1,4 @@
android-sdk-cmdline-tools-latest
android-sdk-platform-tools
android-sdk-build-tools
android-platform

12
dist/pacman.sh vendored
View File

@@ -49,4 +49,16 @@ else
rm -rf paru rm -rf paru
fi fi
PARU_PACKAGE_FILE="dist/arch/paru.txt"
if [ ! -f "$PARU_PACKAGE_FILE" ]; then
echo "AUR packages file not found: $PARU_PACKAGE_FILE"
exit 1
else
mapfile -t paru_packages < "$PARU_PACKAGE_FILE"
paru -Syu --noconfirm "${paru_packages[@]}"
fi
echo "All packages installed successfully."