1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Apk build scripts

- updated for use with p4a version 2019.10.6.
- additions to build instructions.
This commit is contained in:
lufebe16 2020-02-27 15:39:11 +01:00
parent 11aff68af1
commit ad79d2429f
5 changed files with 24 additions and 4 deletions

View file

@ -1,6 +1,9 @@
Prerequisites (needs root):
(For updated information on these subjects please consult the scripts in
android/debian).
On a 'freshly installed' Ubuntu 16.04 (32bit), the following
additional packages had to be installed:

View file

@ -18,3 +18,17 @@ apt-get install -y \
lld
update-alternatives --set java /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java
apt-get install -y --no-install-recommends \
imagemagick \
python3-tk \
ccache \
libltdl-dev
# set python3 as default.
# make python alternatives selectable.
# (debian stretch, adapt for different versions)
update-alternatives --install /usr/bin/python python /usr/bin/python2.7 1
update-alternatives --install /usr/bin/python python /usr/bin/python3.5 2

View file

@ -12,7 +12,7 @@ fi
urlbase=https://dl.google.com/android/repository/
tools_zip=sdk-tools-linux-4333796.zip
ndk_zip=android-ndk-r17c-linux-x86_64.zip
ndk_zip=android-ndk-${ndkver}-linux-x86_64.zip
mkdir -p $sdkdir $ndkdir

View file

@ -8,8 +8,11 @@ tmpdir=${HOME}/.cache/tmp-for-p4a/pysolfc/src
cardsets_dir='PySolFC-Cardsets--Minimal-2.0.1'
cardsets_file="${cardsets_dir}.tar.xz"
p4aver="2019.10.6"
ndkver="r19c"
sdkdir="${HOME}/.cache/sdk-for-p4a/sdk"
ndkdir="${HOME}/.cache/sdk-for-p4a/android-ndk-r17c"
ndkdir="${HOME}/.cache/sdk-for-p4a/android-ndk-${ndkver}"
pkgdir="${HOME}/.local/share/python-for-android/packages"
# gradle may need this.

View file

@ -17,10 +17,10 @@ echo '### install p4a'
if [[ $# == 0 ]]
then
if not python3 -m pip install -q --user python-for-android
if not python3 -m pip install -q --user "python-for-android==${p4aver}"
then
echo "obviously inside a virtualenv, so omit --user"
if python3 -m pip install -q python-for-android
if python3 -m pip install -q "python-for-android==${p4aver}"
then
echo "done"
fi