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:
parent
11aff68af1
commit
ad79d2429f
5 changed files with 24 additions and 4 deletions
|
@ -1,6 +1,9 @@
|
||||||
|
|
||||||
Prerequisites (needs root):
|
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
|
On a 'freshly installed' Ubuntu 16.04 (32bit), the following
|
||||||
additional packages had to be installed:
|
additional packages had to be installed:
|
||||||
|
|
||||||
|
|
|
@ -18,3 +18,17 @@ apt-get install -y \
|
||||||
lld
|
lld
|
||||||
|
|
||||||
update-alternatives --set java /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java
|
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
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ fi
|
||||||
|
|
||||||
urlbase=https://dl.google.com/android/repository/
|
urlbase=https://dl.google.com/android/repository/
|
||||||
tools_zip=sdk-tools-linux-4333796.zip
|
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
|
mkdir -p $sdkdir $ndkdir
|
||||||
|
|
||||||
|
|
|
@ -8,8 +8,11 @@ tmpdir=${HOME}/.cache/tmp-for-p4a/pysolfc/src
|
||||||
cardsets_dir='PySolFC-Cardsets--Minimal-2.0.1'
|
cardsets_dir='PySolFC-Cardsets--Minimal-2.0.1'
|
||||||
cardsets_file="${cardsets_dir}.tar.xz"
|
cardsets_file="${cardsets_dir}.tar.xz"
|
||||||
|
|
||||||
|
p4aver="2019.10.6"
|
||||||
|
ndkver="r19c"
|
||||||
|
|
||||||
sdkdir="${HOME}/.cache/sdk-for-p4a/sdk"
|
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"
|
pkgdir="${HOME}/.local/share/python-for-android/packages"
|
||||||
|
|
||||||
# gradle may need this.
|
# gradle may need this.
|
||||||
|
|
|
@ -17,10 +17,10 @@ echo '### install p4a'
|
||||||
|
|
||||||
if [[ $# == 0 ]]
|
if [[ $# == 0 ]]
|
||||||
then
|
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
|
then
|
||||||
echo "obviously inside a virtualenv, so omit --user"
|
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
|
then
|
||||||
echo "done"
|
echo "done"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Reference in a new issue