OpenLieroX: bump version

This commit is contained in:
pelya
2018-02-25 00:03:56 +02:00
parent da45b67d94
commit 73d25fe6cc
3 changed files with 3 additions and 25 deletions

View File

@@ -7,10 +7,10 @@ AppName="OpenLieroX"
AppFullName=openlierox.net
# Application version code (integer)
AppVersionCode=10580316
AppVersionCode=10580318
# Application user-visible version name (string)
AppVersionName="0.58rc3a16"
AppVersionName="0.58rc3a18"
# Specify path to download application data in zip archive in the form 'Description|URL|MirrorURL^Description2|URL2|MirrorURL2^...'
# If you'll start Description with '!' symbol it will be enabled by default, other downloads should be selected by user from startup config menu

View File

@@ -1,22 +0,0 @@
#!/bin/sh
LOCAL_PATH=`dirname $0`
LOCAL_PATH=`cd $LOCAL_PATH && pwd`
NDK_PATH=`which ndk-build | sed 's@/ndk-build@@'`
cd src
mkdir -p out-$1
cd out-$1
cmake .. \
-DCMAKE_TOOLCHAIN_FILE=$NDK_PATH/build/cmake/android.toolchain.cmake -DANDROID_ABI=$1 \
-DX11=No -DLIBZIP_BUILTIN=Yes -DDEBUG=No -DHASBFD=No -DDISABLE_JOYSTICK=Yes \
|| exit 1
NCPU=4
uname -s | grep -i "linux" > /dev/null && NCPU=`cat /proc/cpuinfo | grep -c -i processor`
make -j$NCPU || exit 1
cp -f bin/openlierox ../../libapplication-$1.so || exit 1