mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Also reorganize icons in subdirectories indicating size. See the Icon Theme Specification: https://specifications.freedesktop.org/icon-theme-spec/icon-theme-spec-latest.html#install_icons
32 lines
772 B
Bash
Executable file
32 lines
772 B
Bash
Executable file
#!/bin/bash
|
|
|
|
package='org.lufebe16.pysolfc'
|
|
version=`./version.py`
|
|
name='PySolFC'
|
|
tmpdir=${HOME}/.cache/tmp-for-p4a/pysolfc/src
|
|
|
|
if [ "$1" ]
|
|
then
|
|
package=${package}.dbg
|
|
name=${name}dbg
|
|
fi
|
|
|
|
python3 -m pythonforandroid.toolchain apk \
|
|
--sdk-dir ${HOME}/.cache/sdk-for-p4a \
|
|
--ndk-dir ${HOME}/.cache/sdk-for-p4a/ndk-bundle \
|
|
--android-api 19 \
|
|
--ndk-version r12b \
|
|
--arch armeabi-v7a \
|
|
--dist-name pysolfc \
|
|
--name ${name} \
|
|
--bootstrap=sdl2 \
|
|
--requirements kivy,hostpython2,random2 \
|
|
--minsdk 14 \
|
|
--private ${tmpdir} \
|
|
--package ${package} \
|
|
--version ${version} \
|
|
--orientation sensor \
|
|
--color=always \
|
|
--icon ${tmpdir}/data/images/icons/48x48/pysol.png \
|
|
--presplash ${tmpdir}/data/images/icons/1024x1024/pysol.png \
|
|
--copy-libs
|