1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00
PySolFC/buildozer/mkcards
lufebe16 468feeb4e1 Android/Kivy:
- metadata updates
- some cleanup
2024-03-23 10:53:26 +01:00

52 lines
912 B
Bash
Executable file

#!/bin/bash
#set -eux
rm -rf cardsets
if [ 1 ]; then
cardsets_dir=PySolFC-Cardsets
if [ ! -d ${cardsets_dir} ]; then
echo '### downloading cardset repo'
mkdir ${cardsets_dir}
pushd ${cardsets_dir}
mkdir repo
pushd repo
git init
git remote add -t master origin https://github.com/shlomif/PySolFC-Cardsets.git
git fetch --depth 1 origin 9b63a583dc3e770fa9bf8f2378c37a064aa4969c
git checkout -q FETCH_HEAD
popd
echo '### choose a minimal set'
for d in $(cat ../minimal.txt)
do
mv repo/${d} .
done
rm repo -rf
echo '### processing cardsets'
../../scripts/cardconv gif png
for i in cardset-*-png; do
rm -rf `basename $i -png`
done
popd
fi
# cp -a ${cardsets_dir} ${cardsets_dir}-orig
ln -s ${cardsets_dir} cardsets
fi
pushd cardsets
echo '### resize big cardsets'
for i in cardset-*; do
../resizecards $i
done
popd
echo '### end cardsets'