mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
android: Install p4a using pip Add 'set -e' to sh scripts, they must stop upon any error README.md: kivy does not specifically require python2 android: Overhaul initialization scripts android: Simplify apk build scripts by using the 'common' file Merge the scripts cardconv and cardsetsgiftobmp android: Fix startup script shebang to python3 android: Simplify mkkeystore and ignore the keystore file android: Fix up debian prerequisites The package cython (as opposed to cython3) even caused me to produce an apk that did not start (TypeError: must be str, not bytes). Android SDK requires java8; install and set as the default. The build processes complained about lld and libtinfo5; added in. mercurial (or hg) is seemingly unused. The pip pcakges were needed by android/initsdk.py which is gone. android: Ensure that the html files are built
28 lines
845 B
Text
28 lines
845 B
Text
# Common constants for various scripts in this directory.
|
|
|
|
version=$(PYTHONPATH=.. python3 -c \
|
|
'from pysollib.settings import VERSION; print(VERSION)')
|
|
|
|
tmpdir=${HOME}/.cache/tmp-for-p4a/pysolfc/src
|
|
|
|
cardsets_dir='PySolFC-Cardsets--Minimal-2.0.1'
|
|
cardsets_file="${cardsets_dir}.tar.xz"
|
|
|
|
sdkdir="${HOME}/.cache/sdk-for-p4a/sdk"
|
|
ndkdir="${HOME}/.cache/sdk-for-p4a/android-ndk-r17c"
|
|
|
|
p4a_options="\
|
|
--sdk-dir ${sdkdir} \
|
|
--ndk-dir ${ndkdir} \
|
|
--dist-name pysolfc \
|
|
--name PySolFC \
|
|
--package org.lufebe16.pysolfc \
|
|
--version ${version} \
|
|
--bootstrap sdl2 \
|
|
--requirements python3,attrs,configobj,kivy,pysol-cards,random2,six \
|
|
--private ${tmpdir} \
|
|
--orientation sensor \
|
|
--icon ${tmpdir}/data/images/icons/48x48/pysol.png \
|
|
--presplash ${tmpdir}/data/images/icons/1024x1024/pysol.png \
|
|
--copy-libs \
|
|
--color always"
|