mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-30 10:26:58 +01:00
script to build from a clean tree. I'm getting emacs and git tmpfile
picked up by the android build system and incorporated into .apks; this will avoid that.
This commit is contained in:
parent
d2782af487
commit
92ec742f90
1 changed files with 20 additions and 0 deletions
20
xwords4/android/scripts/arelease_clone.sh
Executable file
20
xwords4/android/scripts/arelease_clone.sh
Executable file
|
@ -0,0 +1,20 @@
|
|||
#!/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
|
Loading…
Reference in a new issue