mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-18 22:26:30 +01:00
92ec742f90
picked up by the android build system and incorporated into .apks; this will avoid that.
20 lines
304 B
Bash
Executable file
20 lines
304 B
Bash
Executable file
#!/bin/sh
|
|
|
|
BUILDIR=/tmp/$(basename $0)_build_$$
|
|
CURDIR=$(pwd)
|
|
SRCDIR=${CURDIR}/../../../
|
|
|
|
echo $BUILDIR
|
|
echo $SRCDIR
|
|
ls $SRCDIR
|
|
|
|
mkdir -p $BUILDIR
|
|
cd $BUILDIR
|
|
git clone $SRCDIR BUILD
|
|
cd BUILD
|
|
git checkout android_branch
|
|
./xwords4/android/scripts/arelease.sh $*
|
|
cp *.apk /tmp
|
|
|
|
cd $CURDIR
|
|
rm -rf $BUILDIR
|