mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Android
- Build procedure adapted to load cardsets from PySolFC-Cardsets. (hopefully a temporary change)
This commit is contained in:
parent
b966794a9a
commit
c867b2b6d5
2 changed files with 94 additions and 22 deletions
31
buildozer/minimal.txt
Normal file
31
buildozer/minimal.txt
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
cardset-2000
|
||||||
|
cardset-blaren-7x7
|
||||||
|
cardset-crystal-mahjongg
|
||||||
|
cardset-dashavatara-ganjifa
|
||||||
|
cardset-dashavatara-ganjifa-xl
|
||||||
|
cardset-dojouji-3x3
|
||||||
|
cardset-dondorf
|
||||||
|
cardset-eternal-dragon-10x10
|
||||||
|
cardset-gnome-mahjongg-1
|
||||||
|
cardset-hanafuda-200-years
|
||||||
|
cardset-hexadeck
|
||||||
|
cardset-hofamterspiel-9x9
|
||||||
|
cardset-hokusai-6x6
|
||||||
|
cardset-knave-of-hearts-4x4
|
||||||
|
cardset-louie-mantia-hanafuda
|
||||||
|
cardset-matching
|
||||||
|
cardset-matching-xl
|
||||||
|
cardset-matrix
|
||||||
|
cardset-mid-winter-eve-8x8
|
||||||
|
cardset-mughal-ganjifa
|
||||||
|
cardset-mughal-ganjifa-xl
|
||||||
|
cardset-neo
|
||||||
|
cardset-neo-hex
|
||||||
|
cardset-neo-tarock
|
||||||
|
cardset-next-matrix
|
||||||
|
cardset-oxymoron
|
||||||
|
cardset-standard
|
||||||
|
cardset-tuxedo
|
||||||
|
cardset-uni-mahjongg
|
||||||
|
cardset-victoria-falls-5x5
|
||||||
|
cardset-vienna-2k
|
|
@ -1,32 +1,73 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -eux
|
set -eux
|
||||||
|
|
||||||
cardsets_dir=PySolFC-Cardsets--Minimal-2.2.0
|
#loadmode="forge"
|
||||||
cardsets_file=${cardsets_dir}.tar.xz
|
loadmode=""
|
||||||
|
|
||||||
rm -rf cardsets
|
rm -rf cardsets
|
||||||
|
|
||||||
echo '### prepare cardsets'
|
if [ $loadmode == "forge" ]; then
|
||||||
|
cardsets_dir=PySolFC-Cardsets--Minimal-2.2.0
|
||||||
|
cardsets_file=${cardsets_dir}.tar.xz
|
||||||
|
|
||||||
if [ ! -f ${cardsets_file} ]; then
|
echo '### prepare cardsets'
|
||||||
echo '### downloading cardsets'
|
|
||||||
wget https://netix.dl.sourceforge.net/project/pysolfc/PySolFC-Cardsets/minimal/${cardsets_file}
|
if [ ! -f ${cardsets_file} ]; then
|
||||||
|
echo '### downloading cardsets'
|
||||||
|
wget https://netix.dl.sourceforge.net/project/pysolfc/PySolFC-Cardsets/minimal/${cardsets_file}
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d ${cardsets_dir} ]; then
|
||||||
|
echo '### extracting cardsets'
|
||||||
|
tar -xf ${cardsets_file}
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo '### processing cardsets'
|
||||||
|
(
|
||||||
|
cd ${cardsets_dir}
|
||||||
|
../../scripts/cardconv gif png
|
||||||
|
for i in cardset-*-png; do
|
||||||
|
rm -rf `basename $i -png`
|
||||||
|
done
|
||||||
|
)
|
||||||
|
|
||||||
|
ln -s ${cardsets_dir} cardsets
|
||||||
|
|
||||||
|
else
|
||||||
|
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 ae08657f931328439c5697165503a6360a75a7a6
|
||||||
|
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
|
||||||
|
|
||||||
|
ln -s ${cardsets_dir} cardsets
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -d ${cardsets_dir} ]; then
|
|
||||||
echo '### extracting cardsets'
|
|
||||||
tar -xf ${cardsets_file}
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo '### processing cardsets'
|
|
||||||
(
|
|
||||||
cd ${cardsets_dir}
|
|
||||||
../../scripts/cardconv gif png
|
|
||||||
for i in cardset-*-png; do
|
|
||||||
rm -rf `basename $i -png`
|
|
||||||
done
|
|
||||||
)
|
|
||||||
|
|
||||||
ln -s ${cardsets_dir} cardsets
|
|
||||||
|
|
||||||
echo '### end cardsets'
|
echo '### end cardsets'
|
||||||
|
|
Loading…
Add table
Reference in a new issue