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
55 lines
1.1 KiB
Bash
Executable file
55 lines
1.1 KiB
Bash
Executable file
#!/bin/bash
|
|
set -eu
|
|
|
|
# Converts cardset images and config files in subdirs of the current
|
|
# directory from input-format to output-format (default: gif to bmp).
|
|
#
|
|
# Example to convert from gif format to png:
|
|
#
|
|
# $> cardconv gif png
|
|
#
|
|
# Needs package 'ImageMagick' being installed.
|
|
|
|
ifo='gif'
|
|
ofo='bmp'
|
|
|
|
if [ $# -eq 2 ]; then
|
|
ifo=$1
|
|
ofo=$2
|
|
elif [ $# -ne 0 ]; then
|
|
echo "Usage: cardconv [INPUTFORMAT OUTPUTFORMAT]"
|
|
echo "If formats are not specified, converts $ifo to $ofo."
|
|
exit 1
|
|
fi
|
|
|
|
# Returns true if $1/config.txt exists and contains a mention of the input format
|
|
# file extension.
|
|
chkdir() {
|
|
grep -qi "\.${ifo}" "${1}/config".txt
|
|
return $?
|
|
}
|
|
|
|
# Usage: convdir in_dir out_dir
|
|
convdir() {
|
|
mkdir -p "$2"
|
|
|
|
# Convert all images
|
|
for i in $1/*.$ifo; do
|
|
convert "$i" "$2/$(basename $i .$ifo).$ofo"
|
|
done
|
|
|
|
# Convert config.txt
|
|
if [ -f $1/config.txt ]; then
|
|
sed "s/\.${ifo}/.${ofo}/g" $1/config.txt > $2/config.txt
|
|
fi
|
|
}
|
|
|
|
# Check all cardsets.
|
|
for in_dir in cardset-*; do
|
|
out_dir=${in_dir}-${ofo}
|
|
|
|
if [[ ! $in_dir =~ -$ofo$ ]] && [ ! -d $out_dir ] && chkdir $in_dir; then
|
|
convdir $in_dir $out_dir
|
|
echo "$out_dir created"
|
|
fi
|
|
done
|