105 lines
2.0 KiB
Bash
Executable File
105 lines
2.0 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# This script cross-compiles cuberite for the android platform. It uses
|
|
# the following enviroment variables
|
|
# CMAKE: Should be the path to a cmake executable of version 3.12.4+
|
|
# NDK: Should be the path to the android ndk root
|
|
# (optional) TYPE: either Release or Debug, sets the build type
|
|
# (optional) THREADS: The number of threads to use, default 4
|
|
|
|
function usage() {
|
|
echo "Usage: NDK=<path-to-ndk> CMAKE=<cmake-binary> $0 (clean|<ABI>)";
|
|
exit 1
|
|
}
|
|
|
|
BASEDIR="$(realpath $(dirname $0))"
|
|
BUILDDIR="$BASEDIR/../android-build"
|
|
SELF="./$(basename $0)"
|
|
|
|
# Clean doesn't need CMAKE and NDK, so it's handled here
|
|
if [ "$1" == "clean" ]; then
|
|
rm -rf $BUILDDIR
|
|
exit 0
|
|
fi
|
|
|
|
if [ -z "$CMAKE" -o -z "$NDK" ]; then
|
|
usage;
|
|
fi
|
|
|
|
# CMake wants absolute path
|
|
CMAKE="$(realpath $CMAKE)"
|
|
NDK="$(realpath $NDK)"
|
|
|
|
if [ -z "$TYPE" ]; then
|
|
TYPE="Release"
|
|
fi
|
|
|
|
if [ -z "$THREADS" ]; then
|
|
THREADS="4"
|
|
fi
|
|
|
|
cd $BASEDIR
|
|
|
|
case "$1" in
|
|
|
|
armeabi-v7a)
|
|
APILEVEL=16
|
|
;;
|
|
|
|
arm64-v8a)
|
|
APILEVEL=21
|
|
;;
|
|
|
|
x86)
|
|
APILEVEL=16
|
|
;;
|
|
|
|
x86_64)
|
|
APILEVEL=21
|
|
;;
|
|
|
|
all)
|
|
echo "Packing server.zip ..."
|
|
rm -rf Server
|
|
mkdir -p Server
|
|
|
|
for arch in armeabi-v7a arm64-v8a x86 x86_64; do
|
|
echo "Doing ... $arch ..." && \
|
|
cd $BASEDIR && \
|
|
"$SELF" clean && \
|
|
"$SELF" "$arch" && \
|
|
cd $BUILDDIR/Server && \
|
|
zip $BASEDIR/Server/"$arch".zip Cuberite
|
|
done
|
|
|
|
echo "Packing server.zip ..."
|
|
cd $BUILDDIR/Server
|
|
zip -r $BASEDIR/Server/server.zip -@ -x Cuberite < Install/UnixExecutables.list
|
|
|
|
cd $BASEDIR/Server
|
|
for file in server.zip armeabi-v7a.zip arm64-v8a.zip x86.zip x86_64.zip; do
|
|
echo "Generating sha1 sum for ... $file ..." && \
|
|
sha1sum "$file" > "$file".sha1
|
|
done
|
|
|
|
echo "Done! The built zip files await you in the Server/ directory"
|
|
exit;
|
|
;;
|
|
|
|
*)
|
|
usage;
|
|
;;
|
|
esac
|
|
|
|
mkdir -p $BUILDDIR
|
|
cd $BUILDDIR
|
|
"$CMAKE" $BASEDIR/../android -DCMAKE_TOOLCHAIN_FILE="$NDK/build/cmake/android.toolchain.cmake" \
|
|
-DANDROID_ABI="$1" \
|
|
-DANDROID_NATIVE_API_LEVEL="$APILEVEL" \
|
|
-DCMAKE_BUILD_TYPE="$TYPE" \
|
|
-DWHOLE_PROGRAM_OPTIMISATION=No
|
|
|
|
make -j "$THREADS"
|